From a832af93448719508c9cb4aa3db189636ea9b9aa Mon Sep 17 00:00:00 2001 From: "diana.dolgolyova" Date: Sun, 12 Apr 2026 16:03:08 +0300 Subject: [PATCH] =?UTF-8?q?revert:=20remove=20decorative=20side=20lines=20?= =?UTF-8?q?=E2=80=94=20didn't=20look=20right?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/page.tsx | 4 -- src/components/ui/DecorativeLines.tsx | 57 --------------------------- 2 files changed, 61 deletions(-) delete mode 100644 src/components/ui/DecorativeLines.tsx 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 ( - - ); -}