Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure deserunt esse illum pariatur libero provident maxime est aliquam labore odit, optio atque incidunt iusto debitis! Repudiandae quibusdam nulla accusantium quae.
+
+
+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure deserunt esse illum pariatur libero provident maxime est aliquam labore odit, optio atque incidunt iusto debitis! Repudiandae quibusdam nulla accusantium quae.
+
+
+ );
+ }
\ No newline at end of file
diff --git a/wretched-machines-frontend/src/app/demos/page.tsx b/wretched-machines-frontend/src/app/demos/page.tsx
new file mode 100644
index 0000000..7bea929
--- /dev/null
+++ b/wretched-machines-frontend/src/app/demos/page.tsx
@@ -0,0 +1,16 @@
+import ContentBox from "@/components/ui/content-box";
+import PageTitle from "@/components/ui/page-title";
+
+export default function Demos() {
+ return (
+
+
+
+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure deserunt esse illum pariatur libero provident maxime est aliquam labore odit, optio atque incidunt iusto debitis! Repudiandae quibusdam nulla accusantium quae.
+
+
+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure deserunt esse illum pariatur libero provident maxime est aliquam labore odit, optio atque incidunt iusto debitis! Repudiandae quibusdam nulla accusantium quae.
+
+
+ );
+ }
\ No newline at end of file
diff --git a/wretched-machines-frontend/src/app/globals.css b/wretched-machines-frontend/src/app/globals.css
index 4ef0baf..aaa1306 100644
--- a/wretched-machines-frontend/src/app/globals.css
+++ b/wretched-machines-frontend/src/app/globals.css
@@ -66,6 +66,8 @@
}
}
+
+
@layer base {
* {
@apply border-border;
@@ -73,4 +75,16 @@
body {
@apply bg-background text-foreground;
}
-}
\ No newline at end of file
+
+ .text-shadow {
+ text-shadow: .3rem .3rem 0 #bab5a1;
+ }
+
+ main, footer {
+ background-color: #d0de9e;
+ opacity: 0.6;
+ background-image: linear-gradient(45deg, #d0d0d0 50%, #d0de9e 50%);
+ background-size: 5px 5px;
+ }
+}
+
diff --git a/wretched-machines-frontend/src/app/layout.tsx b/wretched-machines-frontend/src/app/layout.tsx
index 3e2701c..c070d6c 100644
--- a/wretched-machines-frontend/src/app/layout.tsx
+++ b/wretched-machines-frontend/src/app/layout.tsx
@@ -3,6 +3,7 @@ import { Inter as FontSans } from "next/font/google"
import "./globals.css";
import { cn } from "@/lib/utils"
+import Navbar from "@/components/ui/navbar";
const fontSans = FontSans({
subsets: ["latin"],
@@ -10,7 +11,7 @@ const fontSans = FontSans({
})
export const metadata: Metadata = {
- title: "Create Next App",
+ title: "Wretched Machines",
description: "Generated by create next app",
};
@@ -24,7 +25,11 @@ export default function RootLayout({