diff --git a/src/app/page.tsx b/src/app/page.tsx index f5bae3c..08cb3da 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,6 @@ import { FAQ } from "@/components/sections/FAQ"; import { Contact } from "@/components/sections/Contact"; import { BackToTop } from "@/components/ui/BackToTop"; import { FloatingContact } from "@/components/ui/FloatingContact"; -import { DecorativeLines } from "@/components/ui/DecorativeLines"; import { Header } from "@/components/layout/Header"; import { Footer } from "@/components/layout/Footer"; import { ClientShell } from "@/components/layout/ClientShell"; @@ -30,8 +29,6 @@ export default function HomePage() {
{content?.hero && } -
- {content?.about && ( } {content?.faq && } {content?.contact && } -
diff --git a/src/components/ui/DecorativeLines.tsx b/src/components/ui/DecorativeLines.tsx deleted file mode 100644 index bd85257..0000000 --- a/src/components/ui/DecorativeLines.tsx +++ /dev/null @@ -1,57 +0,0 @@ -/** - * Decorative flowing gold lines on both sides of the page. - * Desktop only (hidden below xl). Positioned absolute within a wrapper. - */ -export function DecorativeLines() { - return ( - - ); -}