Skip to content

Commit 80a5008

Browse files
committed
feat:added navbar and made changes
2 parents 6d28e54 + 453ec07 commit 80a5008

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

src/App.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import { HashRouter as Router, Routes, Route } from "react-router-dom";
22
import { ToastContainer } from "react-toastify";
33
import routes from "@/routes/index";
4-
import Navbar from '@/components/Navbar/index';
4+
import Navbar from "@/components/Navbar/index";
5+
6+
57

68
const navLinks = [
79
{name: "About Us", path: "/about-us"},

src/assets/styles/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
font-family: "poppins", "sans-serif";
1515
}
1616

17-
body{
17+
body {
1818
background-color: theme("colors.secondary.light");
1919
}
2020

tailwind.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ export default {
2222
text: {
2323
light: "#F7F7F7",
2424
dark: "#232323",
25-
},
25+
},
2626
gradient: {
2727
light: "#383838",
2828
dark: "#222222 ",
29-
}
29+
},
3030
},
3131
screens: {
3232
xs: "0px",
@@ -37,7 +37,7 @@ export default {
3737
},
3838
fontFamily: {
3939
poppins: ["Poppins", "sans-serif"],
40-
gothic: ["League Gothic", "sans-serif"]
40+
gothic: ["League Gothic", "sans-serif"],
4141
},
4242
},
4343
},

0 commit comments

Comments
 (0)