diff --git a/.gitignore b/.gitignore index 9b1913ec..cef619f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.env.local # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies diff --git a/app/page.tsx b/app/page.tsx index 674bd711..bf5b732d 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,3 +1,4 @@ +import ImportProfile from "../components/ImportProfile"; import { SiteHeader } from "@/components/site-header"; import { SponsorBanner } from "@/components/sponsor-banner"; import { HeroSection } from "@/components/hero-section"; @@ -123,6 +124,7 @@ export default function Home() { + ); diff --git a/components/ImportProfile.tsx b/components/ImportProfile.tsx new file mode 100644 index 00000000..b67184dd --- /dev/null +++ b/components/ImportProfile.tsx @@ -0,0 +1,29 @@ +// components/ImportProfile.tsx +import React from "react"; + +const ImportProfile: React.FC = () => { + return ( +
+

Import Profile

+

+ Upload your resume (PDF) or connect LinkedIn to auto-fill your details. +

+ +
+ {/* LinkedIn Import Button */} + + + {/* Resume Upload */} + +
+
+ ); +}; + +export default ImportProfile; diff --git a/components/Testimonials.jsx b/components/Testimonials.jsx new file mode 100644 index 00000000..e69de29b