From 37f3d5e6b5d1cb6846844c09148c8472ccab62d9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:50:15 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 482 +++++++++++++++++++---------------------------- 1 file changed, 195 insertions(+), 287 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 761cb03..1e21bc8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,61 +1,74 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import SplitAbout from "@/components/sections/about/SplitAbout"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import ProductCardThree from "@/components/sections/product/ProductCardThree"; -import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import PricingCardOne from "@/components/sections/pricing/PricingCardOne"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { - Sparkles, - Layers, - Stethoscope, - BarChart3, - Users, - Brain, - Lock, - LayoutDashboard, - Smartphone, - CreditCard, - Settings, - Zap, - Globe, - Award, - HelpCircle, -} from "lucide-react"; +import Link from "next/link"; +import { Sparkles, Layers, Zap, CreditCard, Globe, Award, HelpCircle, Stethoscope, BarChart3, Users, Brain, Lock, LayoutDashboard, Smartphone, Settings } from "lucide-react"; export default function HomePage() { + const navItems = [ + { name: "Platform", id: "hero" }, + { name: "Features", id: "core-features" }, + { name: "Pricing", id: "pricing" }, + { name: "Testimonials", id: "testimonials" }, + { name: "Contact", id: "contact" }, + ]; + + const footerColumns = [ + { + title: "Platform", items: [ + { label: "Features", href: "/features" }, + { label: "Pricing", href: "/pricing" }, + { label: "Solutions", href: "/solutions" }, + { label: "Security", href: "/security" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Blog", href: "/blog" }, + { label: "Careers", href: "/careers" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Service", href: "/terms" }, + { label: "GDPR", href: "/gdpr" }, + { label: "Compliance", href: "/compliance" }, + ], + }, + ]; + return ( @@ -64,65 +77,35 @@ export default function HomePage() { -
+
+
+ +
+
-
- + @@ -302,24 +233,71 @@ export default function HomePage() { textboxLayout="default" useInvertedBackground={false} names={[ - "European Dental Network", - "MediCare Clinic Group", - "Nordic Dental Alliance", - "Clinical Excellence Partners", - "Pan-European Health Services", - "Smile Care International", - "Advanced Dental Solutions", - "Healthcare Innovation Hub", - ]} + "European Dental Network", "MediCare Clinic Group", "Nordic Dental Alliance", "Clinical Excellence Partners", "Pan-European Health Services", "Smile Care International", "Advanced Dental Solutions", "Healthcare Innovation Hub"]} logos={[ - "http://img.b2bpic.net/free-vector/flat-dental-logo-template-collection_52683-65067.jpg", - "http://img.b2bpic.net/free-vector/medical-background-design_1078-61.jpg", - "http://img.b2bpic.net/free-vector/health-care-protection-shield-background-pharmacy-laboratory_1017-51668.jpg", - "http://img.b2bpic.net/free-vector/medical-business-card-template-with-modern-style_23-2147965555.jpg", - "http://img.b2bpic.net/free-vector/business-card-dentists_1051-1116.jpg", - "http://img.b2bpic.net/free-vector/colorful-logo-template_1071-44.jpg", - "http://img.b2bpic.net/free-vector/modern-blue-online-doctor-concept_23-2147797268.jpg", - "http://img.b2bpic.net/free-vector/logo-template-design_1289-188.jpg", + "http://img.b2bpic.net/free-vector/flat-dental-logo-template-collection_52683-65067.jpg", "http://img.b2bpic.net/free-vector/medical-background-design_1078-61.jpg", "http://img.b2bpic.net/free-vector/health-care-protection-shield-background-pharmacy-laboratory_1017-51668.jpg", "http://img.b2bpic.net/free-vector/medical-business-card-template-with-modern-style_23-2147965555.jpg", "http://img.b2bpic.net/free-vector/business-card-dentists_1051-1116.jpg", "http://img.b2bpic.net/free-vector/colorful-logo-template_1071-44.jpg", "http://img.b2bpic.net/free-vector/modern-blue-online-doctor-concept_23-2147797268.jpg", "http://img.b2bpic.net/free-vector/logo-template-design_1289-188.jpg"]} + speed={40} + showCard={true} + /> +
+ +
+ +
+ +
+
@@ -328,17 +306,11 @@ export default function HomePage() {
@@ -347,71 +319,7 @@ export default function HomePage() {
-- 2.49.1 From 8579be60d46bfaeb19e2f5475958207f0474bd9c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:50:16 +0000 Subject: [PATCH 2/2] Update src/app/security/page.tsx --- src/app/security/page.tsx | 196 +++++++++++++++++++++----------------- 1 file changed, 108 insertions(+), 88 deletions(-) diff --git a/src/app/security/page.tsx b/src/app/security/page.tsx index 2ae3dbd..2eac101 100644 --- a/src/app/security/page.tsx +++ b/src/app/security/page.tsx @@ -2,16 +2,18 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import SplitAbout from "@/components/sections/about/SplitAbout"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; import Link from "next/link"; -import { Shield, Lock, CheckCircle2, Eye, Zap, Award } from "lucide-react"; +import { Shield, Lock, Eye, CheckCircle2, AlertCircle, Server, Key, Zap } from "lucide-react"; export default function SecurityPage() { const navItems = [ - { name: "Platform", id: "features" }, + { name: "Platform", id: "hero" }, { name: "Features", id: "core-features" }, { name: "Pricing", id: "pricing" }, { name: "Testimonials", id: "testimonials" }, @@ -20,8 +22,7 @@ export default function SecurityPage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Features", href: "/features" }, { label: "Pricing", href: "/pricing" }, { label: "Solutions", href: "/solutions" }, @@ -29,8 +30,7 @@ export default function SecurityPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About", href: "/about" }, { label: "Blog", href: "/blog" }, { label: "Careers", href: "/careers" }, @@ -38,8 +38,7 @@ export default function SecurityPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "GDPR", href: "/gdpr" }, @@ -50,139 +49,160 @@ export default function SecurityPage() { return ( -
- + +
+ +
+ +
+ +
+
-
- +
-
+
-- 2.49.1