diff --git a/src/components/footer.tsx b/src/components/footer.tsx new file mode 100644 index 0000000..9cf45ca --- /dev/null +++ b/src/components/footer.tsx @@ -0,0 +1,33 @@ +import {Copyright} from "lucide-react"; +import Link from "next/link"; + + +export function Footer() { + + + return ( + + ) +} \ No newline at end of file diff --git a/src/components/header.tsx b/src/components/header.tsx new file mode 100644 index 0000000..6662c8c --- /dev/null +++ b/src/components/header.tsx @@ -0,0 +1,24 @@ +import Image from "next/image"; +import React from "react"; +import {ThemeBtnSelector} from "@/components/theme-btn-selector"; + + +export function Header({title, children}: {title?: string, children?: React.ReactNode}) { + + + + return ( +
+
+ {'Logo +

{title || 'YeloBit'}

+
+
+ {children} +
+
+ +
+
+ ) +} \ No newline at end of file