diff --git a/src/app/page.tsx b/src/app/page.tsx index 1710870..888a326 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Award, Globe, Handshake, Target, TrendingUp, Zap, Sparkles } from 'lucide-react'; +import { Award, Globe, Handshake, Target, TrendingUp, Zap, Sparkles, Users } from 'lucide-react'; export default function LandingPage() { return ( @@ -21,7 +21,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="medium" sizing="largeSmall" - background="noise" + background="circleGradient" cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="solid" @@ -47,19 +47,19 @@ export default function LandingPage() { tag="Netzwerk Revolution" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "noise" }} + background={{ variant: "glowing-orb" }} testimonials={[ { name: "Sarah Johnson", handle: "Founder, TechCorp", testimonial: "Endlich eine Plattform für echte Unternehmer!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-businesswoman_23-2147837532.jpg?_wi=1", imageAlt: "professional woman entrepreneur portrait" + imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-businesswoman_23-2147837532.jpg", imageAlt: "professional woman entrepreneur portrait" }, { name: "Michael Chen", handle: "CEO, InnovateLab", testimonial: "Der beste Ort zum Netzwerken in Deutschland.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-suit_23-2149396254.jpg?_wi=1", imageAlt: "professional man businessman portrait" + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-suit_23-2149396254.jpg", imageAlt: "professional man businessman portrait" }, { name: "Emily Rodriguez", handle: "Founder, GrowthCo", testimonial: "Authentische Connections auf höchstem Niveau.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-woman-with-glasses-cafe_273609-3920.jpg?_wi=1", imageAlt: "young entrepreneur woman portrait" + imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-woman-with-glasses-cafe_273609-3920.jpg", imageAlt: "young entrepreneur woman portrait" } ]} buttons={[ @@ -81,8 +81,8 @@ export default function LandingPage() { metrics={[ { icon: Target, label: "Unsere Vision", value: "Authentizität" }, { icon: Globe, label: "Weltweit vernetzen", value: "Global" }, - { icon: Zap, label: "Early Access", value: "Exklusiv" }, - { icon: Award, label: "Community Fokus", value: "Stark" } + { icon: Users, label: "Community Fokus", value: "Stark" }, + { icon: Zap, label: "Early Access", value: "Exklusiv" } ]} /> @@ -127,15 +127,15 @@ export default function LandingPage() { testimonials={[ { id: "1", name: "Sarah Johnson", role: "Founder", company: "TechCorp", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-businesswoman_23-2147837532.jpg?_wi=2", imageAlt: "professional woman entrepreneur portrait" + imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-businesswoman_23-2147837532.jpg", imageAlt: "professional woman entrepreneur portrait" }, { id: "2", name: "Michael Chen", role: "CEO", company: "InnovateLab", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-suit_23-2149396254.jpg?_wi=2", imageAlt: "professional man businessman portrait" + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-suit_23-2149396254.jpg", imageAlt: "professional man businessman portrait" }, { id: "3", name: "Emily Rodriguez", role: "Founder", company: "GrowthCo", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-woman-with-glasses-cafe_273609-3920.jpg?_wi=2", imageAlt: "young entrepreneur woman portrait" + imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-woman-with-glasses-cafe_273609-3920.jpg", imageAlt: "young entrepreneur woman portrait" }, { id: "4", name: "David Kim", role: "Manager", company: "StartupXYZ", rating: 5, @@ -156,6 +156,7 @@ export default function LandingPage() { description="Partnerschaften mit den besten Marken und Organisationen" textboxLayout="default" useInvertedBackground={true} + names={["Partner 1", "Partner 2", "Partner 3", "Partner 4", "Partner 5", "Partner 6", "Partner 7", "Partner 8"]} logos={[ "http://img.b2bpic.net/free-vector/business-logo_23-2147503133.jpg", "http://img.b2bpic.net/free-vector/gradient-technology-logo-template-collection_23-2148212044.jpg", "http://img.b2bpic.net/free-vector/abstract-lineal-logo-pack_23-2148445979.jpg", "http://img.b2bpic.net/free-vector/gradient-o-logos-template-set_23-2148887389.jpg", "http://img.b2bpic.net/free-vector/wavy-abstract-company-stationery_23-2147568774.jpg", "http://img.b2bpic.net/free-vector/business-insurance-icons-set_98292-2324.jpg", "http://img.b2bpic.net/free-vector/logo-template-abstract-style_23-2147518024.jpg", "http://img.b2bpic.net/free-vector/abstract-classic-blue-business-card-template_23-2148411027.jpg" ]} @@ -198,7 +199,7 @@ export default function LandingPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + className = '', + fontSize = 24, + fontWeight = 'bold', + fill = 'currentColor', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file