Press J or click me!

Docs
Setup

Setup

After Cloning the repo make sure to configure the

1. If you haven't already, clone the repo and run the server locally.

2. Delete everything in /app/page.tsx, and paste this:

1.import Navbar from '@/components/common/Navbar';2.import Header from '@/components/common/Header';3.import Carousel from '@/components/common/Carousel';4.import Problems from '@/components/common/Problems';5.import Options from '@/components/common/Options';6.import Pricing from '@/components/common/Pricing';7.import Faq from '@/components/common/Faq';8.import Footer from '@/components/common/Footer';9.import Boost from '@/components/common/Boost';10.import Reviews from '@/components/reviews';11.import { getSEOTags } from '@/libs/seo';12.13.export const metadata = getSEOTags({14.title: 'Next.js Boilerplate | CodeAssist',15.canonicalUrlRelative: '/',16.});17.18.export default function Home() {19.return (20.<>21.<Navbar />22.<main>23.<div className="py-12">24.<Header />25.</div>26.<Carousel />27.<Problems />28.<Options />29.<Pricing />30.<Faq />31.<Boost />32.</main>33.<Footer />34.</>35.);36.}