|
| 1 | +import { Inter } from "next/font/google"; |
| 2 | +import { Link } from "nextjs13-progress"; |
1 | 3 |
|
2 |
| -import ResumeBuilder from '../components/resume-builder/ResumeBuilder'; |
3 |
| - |
4 |
| - |
| 4 | +const inter = Inter({ subsets: ["latin"] }); |
5 | 5 |
|
6 | 6 | export default function Home() {
|
7 |
| - |
8 |
| - // if path is not /resume-generator redirect to /resume-generator |
9 |
| - |
10 | 7 | return (
|
11 |
| - <main className="flex min-h-[200svh] sm:min-h-screen justify-start sm:justify-center px-4 py-2 gap-4 pb-4 flex-col sm:flex-row"> |
12 |
| - <ResumeBuilder /> |
| 8 | + <main className="flex min-h-[200svh] sm:min-h-screen justify-start sm:justify-center px-4 py-2 gap-4 pb-4 flex-col sm:flex-row"> |
| 9 | + <section className="flex flex-col justify-center items-start max-w-2xl mx-auto"> |
| 10 | + <h1 className="text-4xl font-bold mb-4">Welcome to QuickCv</h1> |
| 11 | + <p className="text-lg mb-6"> |
| 12 | + QuickCv is a simple AI-powered CV builder designed to help you create |
| 13 | + an ATS-friendly resume in minutes. Whether you're a fresh graduate or |
| 14 | + a seasoned professional, our tool makes it easy to showcase your |
| 15 | + skills and experience. |
| 16 | + </p> |
| 17 | + <h2 className="text-2xl font-semibold mb-2">Features:</h2> |
| 18 | + <ul className="list-disc list-inside mb-6"> |
| 19 | + <li>Create a resume in just a few clicks</li> |
| 20 | + <li>ATS-friendly design for better job application success</li> |
| 21 | + <li>Auto-save feature to keep your progress</li> |
| 22 | + <li> |
| 23 | + Multiple sections for personal information, education, work |
| 24 | + experience, and more |
| 25 | + </li> |
| 26 | + <li>Print and download options in PDF format</li> |
| 27 | + </ul> |
| 28 | + <h2 className="text-2xl font-semibold mb-2">Why Choose QuickCv?</h2> |
| 29 | + <p className="mb-6"> |
| 30 | + Our user-friendly interface and AI assistance make resume building |
| 31 | + effortless, allowing you to focus on what truly matters - landing your |
| 32 | + dream job! |
| 33 | + </p> |
| 34 | + <Link |
| 35 | + href="/resume-generator" |
| 36 | + className="bg-green-500 text-white px-4 py-2 rounded-md hover:bg-green-600 transition duration-200" |
| 37 | + > |
| 38 | + Start Building Your Resume |
| 39 | + </Link> |
| 40 | + </section> |
13 | 41 | </main>
|
14 | 42 | );
|
15 | 43 | }
|
0 commit comments