Skip to content
Merged
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
107 changes: 107 additions & 0 deletions src/app/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
"use client";

import Link from "next/link";
import Image from "next/image";
import logoSrc from "public/logo.svg";

const Footer = () => {
return (
<footer className="border-t-2 border-gray-100 bg-white dark:border-gray-700 dark:bg-black">
<div className="mx-auto max-w-7xl px-6 py-10 lg:px-12">

<div className="grid gap-10 md:grid-cols-3">

{/* Logo + Description */}
<div>
<div className="mb-4 flex items-center gap-2">
<div className="rounded-md bg-white p-1">
<Image
src={logoSrc}
alt="OpenResume Logo"
className="h-8 w-auto"
/>
</div>
</div>

<p className="max-w-sm text-sm leading-relaxed text-gray-500 dark:text-gray-400">
Auto-Fill-Tool helps users streamline resume building,
parsing, and automation workflows with a clean and efficient experience.
</p>
</div>

{/* Quick Links */}
<div>
<h3 className="mb-4 text-lg font-semibold text-black dark:text-white">
Quick Links
</h3>

<ul className="space-y-3 text-sm text-gray-500 dark:text-gray-400">
<li>
<Link
href="/"
className="transition-colors hover:text-black dark:hover:text-white"
>
Home
</Link>
</li>

<li>
<Link
href="/resume-builder"
className="transition-colors hover:text-black dark:hover:text-white"
>
Resume Builder
</Link>
</li>

<li>
<Link
href="/resume-parser"
className="transition-colors hover:text-black dark:hover:text-white"
>
Resume Parser
</Link>
</li>
</ul>
</div>

{/* Connect */}
<div>
<h3 className="mb-4 text-lg font-semibold text-black dark:text-white">
Connect
</h3>

<ul className="space-y-3 text-sm text-gray-500 dark:text-gray-400">
<li>
<a
href="https://github.com/sunilkumar2170/Auto-Fill-Tool"
target="_blank"
rel="noopener noreferrer"
className="transition-colors hover:text-black dark:hover:text-white"
>
GitHub Repository
</a>
</li>

<li>
<a
href="mailto:support@example.com"
className="transition-colors hover:text-black dark:hover:text-white"
>
Contact Support
</a>
</li>
</ul>
</div>
</div>

{/* Bottom Footer */}
<div className="mt-10 border-t border-gray-200 pt-6 text-center text-sm text-gray-500 dark:border-gray-700 dark:text-gray-400">
© {new Date().getFullYear()} Auto-Fill-Tool. All rights reserved.
</div>
</div>
</footer>
);
};

export default Footer;
5 changes: 4 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import "globals.css";
// @ts-ignore: side-effect CSS import declarations
import "./globals.css";
import { TopNavBar } from "components/TopNavBar";
import { Analytics } from "@vercel/analytics/react";
import Footer from "./components/Footer";

export const metadata = {
title: "OpenResume - Free Open-source Resume Builder and Parser",
Expand All @@ -19,6 +21,7 @@ export default function RootLayout({
<TopNavBar />
{children}
<Analytics />
<Footer />
</body>
</html>
);
Expand Down
Loading