diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d47f88e..4faa016 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,3 +1,4 @@ +import { Footer } from "@/components/footer" import { HEADER_HEIGHT, Header } from "@/components/header" import { Shape } from "@/components/shapes" import { ThemeProvider } from "@/components/theme-provider" @@ -90,6 +91,7 @@ export default function RootLayout({ children }: Readonly<{ children: React.Reac
{children} +
diff --git a/src/components/footer.tsx b/src/components/footer.tsx new file mode 100644 index 0000000..d1f2b33 --- /dev/null +++ b/src/components/footer.tsx @@ -0,0 +1,116 @@ +import { ChevronDown, Github } from "lucide-react" +import { CardSplit } from "./card-split" +import { Button } from "./ui/button" +import { ButtonWithIcon } from "./ui/buttonWithIcon" + +export function Footer() { + //Icone a riga 11 in futuro per mobile + return ( + + //TODO: dropdowns + ) +}