diff --git a/app/[slug]/site/layout.tsx b/app/[slug]/site/layout.tsx new file mode 100644 index 0000000..9236c5f --- /dev/null +++ b/app/[slug]/site/layout.tsx @@ -0,0 +1,41 @@ +/* Copyright (C) 2024-2025 LibreWeddingPlanner contributors*/ + +import SideNav from '@/app/ui/dashboard/sidenav'; +import Image from 'next/image'; + +export default function Layout({ children }: { children: React.ReactNode }) { + return ( +
+
+ Header +
+
+
+ Stamp +
+ +
+
+ {children} +
+
+
+
+ ); +} \ No newline at end of file diff --git a/app/[slug]/site/page.tsx b/app/[slug]/site/page.tsx new file mode 100644 index 0000000..5a8fb87 --- /dev/null +++ b/app/[slug]/site/page.tsx @@ -0,0 +1,11 @@ +/* Copyright (C) 2024-2025 LibreWeddingPlanner contributors*/ + +'use client' + + +export default function Page() { + + return ( + "Helloworld" + ); +} \ No newline at end of file diff --git a/public/header.png b/public/header.png new file mode 100644 index 0000000..cd724c9 Binary files /dev/null and b/public/header.png differ diff --git a/public/stamp.png b/public/stamp.png new file mode 100644 index 0000000..5ce0eb7 Binary files /dev/null and b/public/stamp.png differ