mirror of
https://github.com/symfony/ai.git
synced 2026-03-23 23:42:18 +01:00
Overhaul the landing page with a modern, section-based layout: - Hero slider with 3 rotating slides (Agent, Symfony, MCP) and progress bar - Component Architecture section with layered SVG diagram - Features section with 10 tabbed code examples - Third-party integration bridges logo grid - Demos section with setup steps and demo cards - MCP SDK and Symfony Mate sections - Sticky navbar with glassmorphism effect and Bootstrap tooltips - Redesigned "Get Involved & Get Support" CTA section - Full light/dark theme support with CSS variables - Stimulus controllers for hero slider, feature tabs, and clipboard - AOS scroll animations - Subtle gradient backgrounds for secondary sections
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Returns the importmap for this application.
|
|
*
|
|
* - "path" is a path inside the asset mapper system. Use the
|
|
* "debug:asset-map" command to see the full list of paths.
|
|
*
|
|
* - "entrypoint" (JavaScript only) set to true for any module that will
|
|
* be used as an "entrypoint" (and passed to the importmap() Twig function).
|
|
*
|
|
* The "importmap:require" command can be used to add new entries to this file.
|
|
*/
|
|
return [
|
|
'app' => [
|
|
'path' => './assets/app.js',
|
|
'entrypoint' => true,
|
|
],
|
|
'bootstrap' => [
|
|
'version' => '5.3.8',
|
|
],
|
|
'@popperjs/core' => [
|
|
'version' => '2.11.8',
|
|
],
|
|
'bootstrap/dist/css/bootstrap.min.css' => [
|
|
'version' => '5.3.8',
|
|
'type' => 'css',
|
|
],
|
|
'typed.js' => [
|
|
'version' => '2.1.0',
|
|
],
|
|
'@hotwired/stimulus' => [
|
|
'version' => '3.2.2',
|
|
],
|
|
'@symfony/stimulus-bundle' => [
|
|
'path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js',
|
|
],
|
|
'aos' => [
|
|
'version' => '2.3.4',
|
|
],
|
|
'aos/dist/aos.css' => [
|
|
'version' => '2.3.4',
|
|
'type' => 'css',
|
|
],
|
|
];
|