From 2e909b674f3046269a7369eab5232ec30b146f73 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 17:24:06 +0000 Subject: [PATCH 1/2] Update src/app/create/page.tsx --- src/app/create/page.tsx | 282 ++++++++++++++++++---------------------- 1 file changed, 126 insertions(+), 156 deletions(-) diff --git a/src/app/create/page.tsx b/src/app/create/page.tsx index da75c4e..28d3840 100644 --- a/src/app/create/page.tsx +++ b/src/app/create/page.tsx @@ -2,172 +2,142 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import FaqBase from '@/components/sections/faq/FaqBase'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { Lightbulb, Headphones, Palette, Download, Sparkles, Video, Wallet, Cloud, FileText, Heart } from "lucide-react"; -export default function LandingPage() { +export default function CreatePage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From e0bcb0ccc87aea3adcc5846e9f70b464eeb45541 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 17:24:07 +0000 Subject: [PATCH 2/2] Update src/app/login/page.tsx --- src/app/login/page.tsx | 263 +++++++++++++++++++---------------------- 1 file changed, 122 insertions(+), 141 deletions(-) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index ef14198..2fa6d83 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -2,156 +2,137 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Lightbulb, Headphones, Palette, Download, Sparkles, Video, Wallet, Cloud, FileText, Heart } from "lucide-react"; -export default function LandingPage() { +export default function LoginPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1