Skip to content

Commit 28b1998

Browse files
authored
Merge branch 'GitMetricsLab:main' into main
2 parents dd28dc3 + 00a00d6 commit 28b1998

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Routes/Router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Navigate, Route, Routes } from "react-router-dom";
1+
import { Routes, Route } from "react-router-dom";
22
import Tracker from "../pages/Tracker/Tracker.tsx";
33
import About from "../pages/About/About";
44
import Contact from "../pages/Contact/Contact";

src/components/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Search, ArrowRight } from 'lucide-react';
1+
import { Search } from 'lucide-react';
22
import { Link } from 'react-router-dom';
33

44
const Hero = () => {

src/components/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Navbar: React.FC = () => {
1515
const { toggleTheme, mode } = themeContext;
1616

1717
return (
18-
<nav className="bg-white dark:bg-gray-900 text-black dark:text-white border-b border-gray-100 dark:border-gray-800 transition-colors duration-300">
18+
<nav className="sticky top-0 z-50 bg-white dark:bg-gray-900 text-black dark:text-white border-b border-gray-100 dark:border-gray-800 transition-colors duration-300">
1919
<div className="container mx-auto px-6 py-4 flex justify-between items-center">
2020
{/* Logo Section */}
2121
<Link

src/pages/Signup/Signup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState, ChangeEvent, FormEvent } from "react";
1+
import React, { useState } from "react";
22
import axios from "axios";
33
import { useNavigate ,Link } from "react-router-dom";
44
import { User, Mail, Lock } from "lucide-react";

0 commit comments

Comments
 (0)