From b459052b44527b4c836302d403b0cfe17040529f Mon Sep 17 00:00:00 2001 From: Timothy Pidashev Date: Sat, 20 Apr 2024 15:59:42 -0700 Subject: [PATCH] remove unneeded containers --- src/web/src/components/header/default.jsx | 68 +++++++++++------------ src/web/src/components/hero/content.jsx | 4 +- 2 files changed, 35 insertions(+), 37 deletions(-) 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() {
-
+ ); };