├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── Backgrounds │ └── BackgroundSquares.tsx ├── Footer │ ├── Footer.tsx │ ├── FooterColumn.tsx │ └── data.ts ├── Hero │ ├── Hero.tsx │ ├── HeroCarousel.tsx │ └── HeroPill.tsx ├── Logo │ └── Logo.tsx ├── Navbar │ ├── Navbar.tsx │ ├── NavbarCTA.tsx │ └── NavbarLinks.tsx ├── Sections │ ├── Features │ │ ├── CardFeature.tsx │ │ └── Features.tsx │ ├── FinalCTA │ │ └── FinalCTA.tsx │ └── Section1 │ │ ├── Section1.tsx │ │ └── data.ts ├── Users │ └── UsersCloud.tsx └── ui │ ├── aspect-ratio.tsx │ ├── button.tsx │ ├── carousel.tsx │ └── menubar.tsx ├── lib ├── config.ts └── utils.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── airbnb.png ├── amazon.png ├── et.png ├── koala.png ├── lion.png ├── logo.png ├── microsoft.png ├── octo.png ├── rabit.png ├── shark.png ├── slack.png └── spotify.svg ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components.json -------------------------------------------------------------------------------- /components/Backgrounds/BackgroundSquares.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Backgrounds/BackgroundSquares.tsx -------------------------------------------------------------------------------- /components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /components/Footer/FooterColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Footer/FooterColumn.tsx -------------------------------------------------------------------------------- /components/Footer/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Footer/data.ts -------------------------------------------------------------------------------- /components/Hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Hero/Hero.tsx -------------------------------------------------------------------------------- /components/Hero/HeroCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Hero/HeroCarousel.tsx -------------------------------------------------------------------------------- /components/Hero/HeroPill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Hero/HeroPill.tsx -------------------------------------------------------------------------------- /components/Logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Logo/Logo.tsx -------------------------------------------------------------------------------- /components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /components/Navbar/NavbarCTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Navbar/NavbarCTA.tsx -------------------------------------------------------------------------------- /components/Navbar/NavbarLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Navbar/NavbarLinks.tsx -------------------------------------------------------------------------------- /components/Sections/Features/CardFeature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Sections/Features/CardFeature.tsx -------------------------------------------------------------------------------- /components/Sections/Features/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Sections/Features/Features.tsx -------------------------------------------------------------------------------- /components/Sections/FinalCTA/FinalCTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Sections/FinalCTA/FinalCTA.tsx -------------------------------------------------------------------------------- /components/Sections/Section1/Section1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Sections/Section1/Section1.tsx -------------------------------------------------------------------------------- /components/Sections/Section1/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Sections/Section1/data.ts -------------------------------------------------------------------------------- /components/Users/UsersCloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/Users/UsersCloud.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/airbnb.png -------------------------------------------------------------------------------- /public/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/amazon.png -------------------------------------------------------------------------------- /public/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/et.png -------------------------------------------------------------------------------- /public/koala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/koala.png -------------------------------------------------------------------------------- /public/lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/lion.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/microsoft.png -------------------------------------------------------------------------------- /public/octo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/octo.png -------------------------------------------------------------------------------- /public/rabit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/rabit.png -------------------------------------------------------------------------------- /public/shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/shark.png -------------------------------------------------------------------------------- /public/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/slack.png -------------------------------------------------------------------------------- /public/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/public/spotify.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaumeGelabert/agency-template/HEAD/tsconfig.json --------------------------------------------------------------------------------