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
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link id="favicon" rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- imported Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700&display=swap" rel="stylesheet">
Expand Down
8 changes: 2 additions & 6 deletions frontend/src/Components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { FloatingNav } from "../ui/floating-navbar";
import { Link, useNavigate } from "react-router-dom";
import DarkModeToggle from "../ui/DarkModeToggle";
import { useTimer } from "../../context/TimerContext";
import logo from '../../assets/DevSync.svg'

const publicNavItems = [
{ name: "Home", link: "/", icon: <Home className="h-4 w-4" /> },
Expand Down Expand Up @@ -77,12 +78,7 @@ const Navbar = () => {
{/* Logo */}

<Link to="/">
<h1
className="text-2xl md:text-3xl lg:text-4xl font-extrabold tracking-tight hover:scale-105 transition-transform duration-300"
style={{ color: "var(--primary)" }}
>
DevSync
</h1>
<img src={logo} alt="DevSync Logo" className="h-10 md:h-12 lg:h-14" />
</Link>

{/* Desktop Navigation - visible from lg */}
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/Components/footer.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import { Github, Mail,Facebook ,Linkedin,Twitter} from "lucide-react";
import { Link } from "react-router-dom"; // or use `next/link` if using Next.js
import logo from '../assets/DevSync.svg'

const Footer = () => {
return (
<footer className="rounded-lg mt-32 pt-24 pb-10 px-6 md:px-12" style={{ background: "var(--card)", color: "var(--card-foreground)" }}>
<div className="max-w-7xl mx-auto grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-10">
{/* Brand */}
<div>
<h3 className="text-3xl font-bold mb-2 tracking-tight cursor-pointer transition-all duration-300 hover:scale-105 hover:text-blue-400" style={{ color: "var(--primary)" }}>DevSync</h3>
<Link to="/">
<img src={logo} alt="DevSync Logo" className="h-12 mb=2" />
</Link>
<p className="text-sm" style={{ color: "var(--muted-foreground)" }}>
Stay ahead. Stay synced. Stay Dev.
</p>
Expand Down
Loading