├── .gitignore ├── LICENSE ├── README.md ├── app ├── app.vue ├── assets │ └── css │ │ └── theme.css ├── components │ ├── element │ │ ├── Footer.vue │ │ └── Navbar.vue │ ├── sections │ │ ├── AboutContent.vue │ │ ├── Cta.vue │ │ ├── HeroSection.vue │ │ ├── LogoCloud.vue │ │ ├── Services.vue │ │ └── SocialProuf.vue │ └── ui │ │ ├── Container.vue │ │ └── ToggleTheme.vue ├── layouts │ └── default.vue └── pages │ └── index.vue ├── cover_agence_x.webp ├── lib └── utils.ts ├── nuxt.config.ts ├── package.json ├── public ├── favicon.ico ├── grow-perf.webp ├── image1.webp ├── images │ ├── happy-work.webp │ └── heroImg.webp ├── logo-dark.svg ├── logo-light.svg └── logos │ ├── logoipsum-1.svg │ ├── logoipsum-2.svg │ ├── logoipsum-3.svg │ ├── paypallogo.png │ ├── slack.png │ └── spotify.png ├── server └── tsconfig.json ├── tsconfig.json └── uno.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/README.md -------------------------------------------------------------------------------- /app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/app.vue -------------------------------------------------------------------------------- /app/assets/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/assets/css/theme.css -------------------------------------------------------------------------------- /app/components/element/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/element/Footer.vue -------------------------------------------------------------------------------- /app/components/element/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/element/Navbar.vue -------------------------------------------------------------------------------- /app/components/sections/AboutContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/sections/AboutContent.vue -------------------------------------------------------------------------------- /app/components/sections/Cta.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/sections/Cta.vue -------------------------------------------------------------------------------- /app/components/sections/HeroSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/sections/HeroSection.vue -------------------------------------------------------------------------------- /app/components/sections/LogoCloud.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/sections/LogoCloud.vue -------------------------------------------------------------------------------- /app/components/sections/Services.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/sections/Services.vue -------------------------------------------------------------------------------- /app/components/sections/SocialProuf.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/sections/SocialProuf.vue -------------------------------------------------------------------------------- /app/components/ui/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/ui/Container.vue -------------------------------------------------------------------------------- /app/components/ui/ToggleTheme.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/components/ui/ToggleTheme.vue -------------------------------------------------------------------------------- /app/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/layouts/default.vue -------------------------------------------------------------------------------- /app/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/app/pages/index.vue -------------------------------------------------------------------------------- /cover_agence_x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/cover_agence_x.webp -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/grow-perf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/grow-perf.webp -------------------------------------------------------------------------------- /public/image1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/image1.webp -------------------------------------------------------------------------------- /public/images/happy-work.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/images/happy-work.webp -------------------------------------------------------------------------------- /public/images/heroImg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/images/heroImg.webp -------------------------------------------------------------------------------- /public/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/logo-dark.svg -------------------------------------------------------------------------------- /public/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/logo-light.svg -------------------------------------------------------------------------------- /public/logos/logoipsum-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/logos/logoipsum-1.svg -------------------------------------------------------------------------------- /public/logos/logoipsum-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/logos/logoipsum-2.svg -------------------------------------------------------------------------------- /public/logos/logoipsum-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/logos/logoipsum-3.svg -------------------------------------------------------------------------------- /public/logos/paypallogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/logos/paypallogo.png -------------------------------------------------------------------------------- /public/logos/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/logos/slack.png -------------------------------------------------------------------------------- /public/logos/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/public/logos/spotify.png -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uno-forge-hub/agence-x-unocss/HEAD/uno.config.ts --------------------------------------------------------------------------------