Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.env.local
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
Expand Down
2 changes: 2 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down Expand Up @@ -123,6 +124,7 @@ export default function Home() {
<FeaturesSection />
<TestimonialsSection />
<ScrollToTop />
<ImportProfile />
</main>
</div>
);
Expand Down
29 changes: 29 additions & 0 deletions components/ImportProfile.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// components/ImportProfile.tsx
import React from "react";

const ImportProfile: React.FC = () => {
return (
<div className="p-4 border rounded-lg shadow-md">
<h2 className="text-xl font-semibold mb-2">Import Profile</h2>
<p className="text-gray-600 mb-4">
Upload your resume (PDF) or connect LinkedIn to auto-fill your details.
</p>

<div className="space-y-3">
{/* LinkedIn Import Button */}
<button className="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700">
Import from LinkedIn
</button>

{/* Resume Upload */}
<input
type="file"
accept="application/pdf"
className="border p-2 rounded-md w-full"
/>
</div>
</div>
);
};

export default ImportProfile;
Empty file added components/Testimonials.jsx
Empty file.