diff --git a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx
new file mode 100644
index 0000000..25f0241
--- /dev/null
+++ b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx
@@ -0,0 +1,33 @@
+import React from "react";
+import Link from "next/link";
+import Image from "next/image";
+import Jefes from "../../../public/jefes_logo.jpg";
+
+const NavBar = () => {
+ // Create an array to hold the list items
+ const links = [
+ { label: "Dashboard", href: "/" },
+ { label: "Issues", href: "/" },
+ ];
+
+ return (
+
+ );
+};
+
+export default NavBar;
diff --git a/Websites/jefes-nextjs/app/globals.css b/Websites/jefes-nextjs/app/globals.css
index aadc179..28f6920 100644
--- a/Websites/jefes-nextjs/app/globals.css
+++ b/Websites/jefes-nextjs/app/globals.css
@@ -13,6 +13,6 @@
}
body {
- padding: 1rem;
+ color: black;
}
diff --git a/Websites/jefes-nextjs/app/layout.tsx b/Websites/jefes-nextjs/app/layout.tsx
index ed3eac1..c39ec4b 100644
--- a/Websites/jefes-nextjs/app/layout.tsx
+++ b/Websites/jefes-nextjs/app/layout.tsx
@@ -1,6 +1,7 @@
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
+import NavBar from './components/NavBar/NavBar'
const inter = Inter({ subsets: ['latin'] })
@@ -16,7 +17,10 @@ export default function RootLayout({
}) {
return (
-
{children}
+
+
+ {children}
+
)
}
diff --git a/Websites/jefes-nextjs/app/page.tsx b/Websites/jefes-nextjs/app/page.tsx
index 7be507e..d0fd805 100644
--- a/Websites/jefes-nextjs/app/page.tsx
+++ b/Websites/jefes-nextjs/app/page.tsx
@@ -1,4 +1,3 @@
-import Image from 'next/image';
import Link from 'next/link';
import ProductCard from './components/ProductCard/ProductCard';
diff --git a/Websites/jefes-nextjs/public/jefes_logo.jpg b/Websites/jefes-nextjs/public/jefes_logo.jpg
new file mode 100644
index 0000000..6934aaa
Binary files /dev/null and b/Websites/jefes-nextjs/public/jefes_logo.jpg differ
diff --git a/Websites/jefes-nextjs/public/logo.svg b/Websites/jefes-nextjs/public/logo.svg
new file mode 100644
index 0000000..3f437f3
--- /dev/null
+++ b/Websites/jefes-nextjs/public/logo.svg
@@ -0,0 +1,1642 @@
+
\ No newline at end of file