starting with the frontend

parent f25aacb3
...@@ -6,7 +6,7 @@ import Avatar from "./avatar" ...@@ -6,7 +6,7 @@ import Avatar from "./avatar"
export default function Navbar() { export default function Navbar() {
return ( return (
<nav className="flex justify-between items-center px-4 py-3 bg-gray-800 text-white"> <nav className="flex justify-between items-center px-4 py-3 bg-green-800 text-white">
<Sections/> <Sections/>
<Avatar/> <Avatar/>
</nav> </nav>
......
...@@ -4,16 +4,16 @@ export default function Sections() { ...@@ -4,16 +4,16 @@ export default function Sections() {
return ( return (
<div className="flex gap-6"> <div className="flex gap-6">
<Link href="/" className="text-white hover:text-gray-300"> <Link href="/" className="text-white hover:text-gray-300">
BookCrossing Home
</Link> </Link>
<Link href="/available" className="text-white hover:text-gray-300"> <Link href="/available" className="text-white hover:text-gray-300">
Available Recent Exams
</Link> </Link>
<Link href="/loans" className="text-white hover:text-gray-300"> <Link href="/loans" className="text-white hover:text-gray-300">
My loans Grades
</Link> </Link>
<Link href="/owned" className="text-white hover:text-gray-300"> <Link href="/owned" className="text-white hover:text-gray-300">
My books Exchange Exams
</Link> </Link>
</div> </div>
) )
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
:root { :root {
--background: #ffffff; --background: #ffffff;
--foreground: #171717; --foreground: #1a6e2b;
} }
@theme inline { @theme inline {
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
--background: #0a0a0a; --background: #efeaea;
--foreground: #ededed; --foreground: #150b0b;
} }
} }
......
export default function Home() { export default function Home() {
return ( return (
<> <>
Welcome to BookCrossing Welcome
</> </>
); );
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment