diff --git a/app/about-us/page.tsx b/app/about-us/page.tsx
new file mode 100644
index 0000000..a7303db
--- /dev/null
+++ b/app/about-us/page.tsx
@@ -0,0 +1,5 @@
+export default function Page() {
+ return (
+
about us page
+ )
+}
\ No newline at end of file
diff --git a/app/contact/page.tsx b/app/contact/page.tsx
new file mode 100644
index 0000000..53d875f
--- /dev/null
+++ b/app/contact/page.tsx
@@ -0,0 +1,5 @@
+export default function Page() {
+ return (
+ contact page
+ )
+}
\ No newline at end of file
diff --git a/app/globals.css b/app/globals.css
index a2dc41e..7d8efcb 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -14,7 +14,7 @@
@media (prefers-color-scheme: dark) {
:root {
- --background: #0a0a0a;
+ --background: #000;
--foreground: #ededed;
}
}
diff --git a/app/layout.tsx b/app/layout.tsx
index 976eb90..7e6c23a 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
+import Menubar from '../components/menubar';
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -27,7 +28,10 @@ export default function RootLayout({
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
- {children}
+
+
+ {children}
+