├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── Footer.tsx ├── MaxWidthWrapper.tsx ├── MobileNav.tsx ├── Navbar.tsx ├── SideNav.tsx └── ui │ ├── button.tsx │ ├── card.tsx │ └── sheet.tsx ├── landing_page_preview.jpg ├── lib └── utils.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── _tweets.png ├── coffee.webp ├── dashboard-preview.png ├── logo.png ├── mic.webp ├── openai.webp ├── schedule.webp ├── speaker.webp ├── taxi.webp └── tweet_collage.png ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components.json -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/MaxWidthWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components/MaxWidthWrapper.tsx -------------------------------------------------------------------------------- /components/MobileNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components/MobileNav.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/SideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components/SideNav.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /landing_page_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/landing_page_preview.jpg -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_tweets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/_tweets.png -------------------------------------------------------------------------------- /public/coffee.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/coffee.webp -------------------------------------------------------------------------------- /public/dashboard-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/dashboard-preview.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/mic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/mic.webp -------------------------------------------------------------------------------- /public/openai.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/openai.webp -------------------------------------------------------------------------------- /public/schedule.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/schedule.webp -------------------------------------------------------------------------------- /public/speaker.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/speaker.webp -------------------------------------------------------------------------------- /public/taxi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/taxi.webp -------------------------------------------------------------------------------- /public/tweet_collage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/public/tweet_collage.png -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moinbukhari/NextJS-landing-page-template/HEAD/tsconfig.json --------------------------------------------------------------------------------