Skip to content

Commit

Permalink
Use better examples :)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Apr 7, 2024
1 parent 43b88ce commit f53191e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions app/src/Controller/AppController.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,28 +39,28 @@ public function api(Response $response): Response
{
$data = [
[
'url' => 'https://getbootstrap.com/docs/5.3/getting-started/introduction/',
'title' => 'Bootstrap quick start guide',
'url' => 'http://vuejs.org/guide/',
'title' => 'VueJS Official Guide',
'number' => rand(1, 100),
],
[
'url' => 'https://getbootstrap.com/docs/5.3/getting-started/webpack/',
'title' => 'Bootstrap Webpack guide',
'url' => 'https://getuikit.com/docs/introduction',
'title' => 'UIkit Documentation',
'number' => rand(1, 100),
],
[
'url' => 'https://getbootstrap.com/docs/5.3/getting-started/parcel/',
'title' => 'Bootstrap Parcel guide',
'url' => 'https://router.vuejs.org',
'title' => 'Vue Router',
'number' => rand(1, 100),
],
[
'url' => 'https://getbootstrap.com/docs/5.3/getting-started/vite/',
'title' => 'Bootstrap Vite guide',
'url' => 'https://axios-http.com/docs/intro',
'title' => 'Axios Documentation',
'number' => rand(1, 100),
],
[
'url' => 'https://getbootstrap.com/docs/5.3/getting-started/contribute/',
'title' => 'Contributing to Bootstrap',
'url' => 'https://pinia.vuejs.org',
'title' => 'Pinia',
'number' => rand(1, 100),
],
];
Expand Down

0 comments on commit f53191e

Please sign in to comment.