diff --git a/src/web/src/components/header/default.jsx b/src/web/src/components/header/default.jsx index b940230..b6db918 100644 --- a/src/web/src/components/header/default.jsx +++ b/src/web/src/components/header/default.jsx @@ -3,44 +3,42 @@ import Link from "next/link"; import { motion } from "framer-motion"; import { Links, LinkColors } from "@/components/header/constants"; -import Container from "@/components/ui/container"; function DefaultHeader() { return ( - - - - {Links.map((link) => ( - - {link.label} - - ))} - - - + + + {Links.map((link) => ( + + {link.label} + + ))} + + ); } diff --git a/src/web/src/components/hero/content.jsx b/src/web/src/components/hero/content.jsx index eb6b123..8796f2e 100644 --- a/src/web/src/components/hero/content.jsx +++ b/src/web/src/components/hero/content.jsx @@ -32,7 +32,7 @@ function Portrait() { function Content() { return ( - + <> @@ -85,7 +85,7 @@ function Content() { - + > ); };