Merge version_1 into main #5

Merged
bender merged 43 commits from version_1 into main 2026-03-05 16:37:04 +00:00
43 changed files with 1454 additions and 87 deletions

View File

@@ -6,14 +6,14 @@
"textRules": {
"logoText": {
"required": false,
"default": "Webild",
"default": "RealWeb",
"example": "Company Name",
"minChars": 2,
"maxChars": 30
},
"copyrightText": {
"required": false,
"default": "© 2025 | Webild",
"default": "© 2025 | RealWeb",
"example": "© 2025 Company Name",
"minChars": 5,
"maxChars": 50
@@ -51,8 +51,8 @@
},
"propsSchema": {
"columns": "Array<{ title: string, items: Array<{ label: string, href: string }> }> - Footer navigation columns (required)",
"logoText?": "string (default: 'Webild')",
"copyrightText?": "string (default: '© 2025 | Webild')",
"logoText?": "string (default: 'RealWeb')",
"copyrightText?": "string (default: '© 2025 | RealWeb')",
"onPrivacyClick?": "() => void",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",

View File

@@ -6,14 +6,14 @@
"textRules": {
"copyrightText": {
"required": false,
"example": "© 2025 | Webild",
"example": "© 2025 | RealWeb",
"minChars": 5,
"maxChars": 100,
"note": "Copyright text displayed at bottom left"
},
"logoText": {
"required": false,
"example": "Webild",
"example": "RealWeb",
"minChars": 2,
"maxChars": 30,
"note": "Text used for h2 heading"
@@ -34,9 +34,9 @@
}
},
"propsSchema": {
"logoText?": "string (default: 'Webild')",
"logoText?": "string (default: 'RealWeb')",
"columns": "Array<{ title: string, items: Array<{ label: string, href: string }> }> - Footer navigation columns (required)",
"copyrightText?": "string (default: '© 2025 | Webild')",
"copyrightText?": "string (default: '© 2025 | RealWeb')",
"onPrivacyClick?": "() => void",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",
@@ -51,7 +51,7 @@
"copyrightTextClassName?": "string",
"privacyButtonClassName?": "string"
},
"usageExample": "<FooterBaseCard columns={[{ title: 'Product', items: [{ label: 'Features', href: '/features' }, { label: 'Pricing', href: '/pricing' }] }, { title: 'Company', items: [{ label: 'About', href: '/about' }, { label: 'Blog', href: '/blog' }] }]} logoText=\"Webild\" copyrightText=\"© 2025 | Webild\" onPrivacyClick={() => console.log('Privacy clicked')} />",
"usageExample": "<FooterBaseCard columns={[{ title: 'Product', items: [{ label: 'Features', href: '/features' }, { label: 'Pricing', href: '/pricing' }] }, { title: 'Company', items: [{ label: 'About', href: '/about' }, { label: 'Blog', href: '/blog' }] }]} logoText=\"RealWeb\" copyrightText=\"© 2025 | RealWeb\" onPrivacyClick={() => console.log('Privacy clicked')} />",
"do": [
"Use for general use",
"Requires columns[]"

View File

@@ -6,7 +6,7 @@
"textRules": {
"copyrightText": {
"required": false,
"default": "© 2025 | Webild",
"default": "© 2025 | RealWeb",
"example": "© 2025 Company Name",
"minChars": 5,
"maxChars": 50

View File

@@ -6,14 +6,14 @@
"textRules": {
"copyrightText": {
"required": false,
"example": "© 2025 | Webild",
"example": "© 2025 | RealWeb",
"minChars": 5,
"maxChars": 100,
"note": "Copyright text displayed at bottom left"
},
"logoText": {
"required": false,
"example": "Webild",
"example": "RealWeb",
"minChars": 2,
"maxChars": 30,
"note": "Text used for SVG logo"
@@ -33,8 +33,8 @@
}
},
"propsSchema": {
"logoText?": "string (default: 'Webild')",
"copyrightText?": "string (default: '© 2025 | Webild')",
"logoText?": "string (default: 'RealWeb')",
"copyrightText?": "string (default: '© 2025 | RealWeb')",
"socialLinks?": "Array<{ icon: LucideIcon, href: string, ariaLabel: string }> - Social media links",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",
@@ -47,7 +47,7 @@
"socialContainerClassName?": "string",
"socialIconClassName?": "string"
},
"usageExample": "<FooterCard logoText=\"Webild\" copyrightText=\"© 2025 | Webild\" socialLinks={[{ icon: Twitter, href: 'https://twitter.com/webild', ariaLabel: 'Twitter' }, { icon: Linkedin, href: 'https://linkedin.com/company/webild', ariaLabel: 'LinkedIn' }]} />",
"usageExample": "<FooterCard logoText=\"RealWeb\" copyrightText=\"© 2025 | RealWeb\" socialLinks={[{ icon: Twitter, href: 'https://twitter.com/webild', ariaLabel: 'Twitter' }, { icon: Linkedin, href: 'https://linkedin.com/company/webild', ariaLabel: 'LinkedIn' }]} />",
"do": [
"Use for general use",
"Requires socialLinks?[]"

View File

@@ -6,7 +6,7 @@
"textRules": {
"logoText": {
"required": false,
"default": "Webild",
"default": "RealWeb",
"example": "Company Name",
"minChars": 2,
"maxChars": 30

View File

@@ -6,7 +6,7 @@
"textRules": {
"logoText": {
"required": false,
"example": "Webild",
"example": "RealWeb",
"minChars": 2,
"maxChars": 30,
"note": "Text used for SVG logo"
@@ -20,7 +20,7 @@
}
},
"propsSchema": {
"logoText?": "string (default: 'Webild')",
"logoText?": "string (default: 'RealWeb')",
"leftLink": "{ text: string, onClick?: () => void, href?: string } (required)",
"rightLink": "{ text: string, onClick?: () => void, href?: string } (required)",
"ariaLabel?": "string (default: 'Site footer')",
@@ -30,7 +30,7 @@
"logoClassName?": "string",
"linkClassName?": "string"
},
"usageExample": "<FooterLogoReveal logoText=\"Webild\" leftLink={{ text: 'Privacy Policy', href: '/privacy' }} rightLink={{ text: 'Terms of Service', href: '/terms' }} />",
"usageExample": "<FooterLogoReveal logoText=\"RealWeb\" leftLink={{ text: 'Privacy Policy', href: '/privacy' }} rightLink={{ text: 'Terms of Service', href: '/terms' }} />",
"do": [
"Use for general use"
],

View File

@@ -6,14 +6,14 @@
"textRules": {
"logoText": {
"required": false,
"default": "Webild",
"default": "RealWeb",
"example": "Company Name",
"minChars": 2,
"maxChars": 30
},
"copyrightText": {
"required": false,
"default": "© 2025 | Webild",
"default": "© 2025 | RealWeb",
"example": "© 2025 Company Name",
"minChars": 5,
"maxChars": 50
@@ -66,8 +66,8 @@
"videoSrc": "string (required if no imageSrc)",
"videoAriaLabel?": "string (default: 'Footer video')",
"columns": "Array<{ title: string, items: Array<{ label: string, href: string }> }> - Footer navigation columns (required)",
"logoText?": "string (default: 'Webild')",
"copyrightText?": "string (default: '© 2025 | Webild')",
"logoText?": "string (default: 'RealWeb')",
"copyrightText?": "string (default: '© 2025 | RealWeb')",
"onPrivacyClick?": "() => void",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",

View File

@@ -12,7 +12,7 @@
},
"bottomRightText": {
"required": true,
"example": "Made with Webild",
"example": "Made with RealWeb",
"minChars": 2,
"maxChars": 50
},
@@ -63,7 +63,7 @@
"bottomLeftTextClassName?": "string",
"bottomRightTextClassName?": "string"
},
"usageExample": "<FooterSimple columns={[{ title: 'Navigate', items: [{ label: 'Home', href: '#' }, { label: 'About', href: '#' }] }, { title: 'Resources', items: [{ label: 'Blog', href: '#' }, { label: 'FAQ', href: '#' }] }, { title: 'Legal', items: [{ label: 'Privacy', href: '#' }, { label: 'Terms', href: '#' }] }]} bottomLeftText=\"© 2025 Company. All rights reserved.\" bottomRightText=\"Made with Webild\" />",
"usageExample": "<FooterSimple columns={[{ title: 'Navigate', items: [{ label: 'Home', href: '#' }, { label: 'About', href: '#' }] }, { title: 'Resources', items: [{ label: 'Blog', href: '#' }, { label: 'FAQ', href: '#' }] }, { title: 'Legal', items: [{ label: 'Privacy', href: '#' }, { label: 'Terms', href: '#' }] }]} bottomLeftText=\"© 2025 Company. All rights reserved.\" bottomRightText=\"Made with RealWeb\" />",
"do": [
"Use for feature showcases",
"Use for capability displays",

View File

@@ -6,7 +6,7 @@
"textRules": {
"logoText": {
"required": true,
"example": "Webild",
"example": "RealWeb",
"minChars": 2,
"maxChars": 20
},
@@ -79,7 +79,7 @@
"blurClassName?": "string",
"dimOverlayClassName?": "string"
},
"usageExample": "<ThemeProvider defaultButtonVariant=\"hover-bubble\" defaultTextAnimation=\"entrance-slide\" borderRadius=\"pill\">\n <HeroLogo \n logoText=\"Webild\" \n description=\"Building the future of web design with innovative solutions\" \n buttons={[{ text: 'Get Started', href: 'https://github.com' }, { text: 'Learn More', href: 'about' }]} \n imageSrc=\"/placeholders/placeholder5.jpg\" \n imageAlt=\"Hero background\"\n />\n</ThemeProvider>",
"usageExample": "<ThemeProvider defaultButtonVariant=\"hover-bubble\" defaultTextAnimation=\"entrance-slide\" borderRadius=\"pill\">\n <HeroLogo \n logoText=\"RealWeb\" \n description=\"Building the future of web design with innovative solutions\" \n buttons={[{ text: 'Get Started', href: 'https://github.com' }, { text: 'Learn More', href: 'about' }]} \n imageSrc=\"/placeholders/placeholder5.jpg\" \n imageAlt=\"Hero background\"\n />\n</ThemeProvider>",
"do": [
"Use for landing pages",
"Use for feature showcases",

View File

@@ -10,7 +10,7 @@
"required": false,
"minChars": 2,
"maxChars": 20,
"example": "Webild",
"example": "RealWeb",
"fallbackBehavior": "Shows brandName text"
},
"buttonRules": {
@@ -52,7 +52,7 @@
},
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"brandName?": "string (default: 'Webild')",
"brandName?": "string (default: 'RealWeb')",
"button": "{text: string, onClick?: () => void, href?: string}",
"animateOnLoad?": "boolean (default: true)",
"className?": "string (default: '')",

View File

@@ -10,7 +10,7 @@
"required": false,
"minChars": 2,
"maxChars": 20,
"example": "Webild",
"example": "RealWeb",
"fallbackBehavior": "Shows brandName text"
},
"buttonRules": {
@@ -53,7 +53,7 @@
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"className?": "string",
"brandName?": "string (default: 'Webild')",
"brandName?": "string (default: 'RealWeb')",
"button": "{text: string, onClick?: () => void, href?: string}",
"buttonClassName?": "string (default: '')",
"buttonTextClassName?": "string (default: '')"

View File

@@ -10,7 +10,7 @@
"required": false,
"minChars": 2,
"maxChars": 20,
"example": "Webild",
"example": "RealWeb",
"fallbackBehavior": "Shows brandName text"
},
"linkRules": {
@@ -35,7 +35,7 @@
},
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"brandName?": "string (default: 'Webild')"
"brandName?": "string (default: 'RealWeb')"
},
"usageExample": "<NavbarStyleApple />",
"do": [

View File

@@ -10,7 +10,7 @@
"required": false,
"minChars": 2,
"maxChars": 20,
"example": "Webild",
"example": "RealWeb",
"fallbackBehavior": "Shows brandName text"
},
"buttonRules": {
@@ -53,7 +53,7 @@
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"button": "{text: string, onClick?: () => void, href?: string}",
"brandName?": "string (default: 'Webild')",
"brandName?": "string (default: 'RealWeb')",
"className?": "string (default: '')"
},
"usageExample": "<NavbarStyleCentered navItems={[{name: 'Home', id: 'home'}, {name: 'About', id: 'about'}, {name: 'Services', id: 'services'}, {name: 'Blog', id: 'blog'}, {name: 'Contact', id: 'contact'}]} button={{text: 'Get Started', href: 'contact'}} />",

View File

@@ -10,7 +10,7 @@
"required": false,
"minChars": 2,
"maxChars": 20,
"example": "Webild",
"example": "RealWeb",
"fallbackBehavior": "Shows brandName text"
},
"linkRules": {
@@ -49,7 +49,7 @@
},
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"brandName?": "string (default: 'Webild')",
"brandName?": "string (default: 'RealWeb')",
"bottomLeftText?": "string (default: 'Global Community')",
"bottomRightText?": "string (default: 'hello@example.com')",
"topBarClassName?": "string (default: '')"

View File

@@ -2,8 +2,8 @@
"name": "FooterBase",
"propsSchema": {
"columns": "Array<{ title: string, items: Array<{ label: string, href: string }> }> - Footer navigation columns",
"logoText?": "string (default: 'Webild')",
"copyrightText?": "string (default: '© 2025 | Webild')",
"logoText?": "string (default: 'RealWeb')",
"copyrightText?": "string (default: '© 2025 | RealWeb')",
"onPrivacyClick?": "() => void",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",

View File

@@ -1,9 +1,9 @@
{
"name": "FooterBaseCard",
"propsSchema": {
"logoText?": "string (default: 'Webild')",
"logoText?": "string (default: 'RealWeb')",
"columns": "Array<{ title: string, items: Array<{ label: string, href: string }> }> - Footer navigation columns",
"copyrightText?": "string (default: '© 2025 | Webild')",
"copyrightText?": "string (default: '© 2025 | RealWeb')",
"onPrivacyClick?": "() => void",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",

View File

@@ -1,8 +1,8 @@
{
"name": "FooterCard",
"propsSchema": {
"logoText?": "string (default: 'Webild')",
"copyrightText?": "string (default: '© 2025 | Webild')",
"logoText?": "string (default: 'RealWeb')",
"copyrightText?": "string (default: '© 2025 | RealWeb')",
"socialLinks?": "Array<{ icon: LucideIcon, href: string, ariaLabel: string }> - Social media links",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",

View File

@@ -2,7 +2,7 @@
"name": "FooterLogoEmphasis",
"propsSchema": {
"columns": "Array<{ items: Array<{ label: string, href?: string, onClick?: () => void }> }> - Footer navigation columns (required, max 5)",
"logoText?": "string (default: 'Webild')",
"logoText?": "string (default: 'RealWeb')",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",
"containerClassName?": "string",

View File

@@ -1,7 +1,7 @@
{
"name": "FooterLogoReveal",
"propsSchema": {
"logoText?": "string (default: 'Webild')",
"logoText?": "string (default: 'RealWeb')",
"logoLineHeight?": "number (default: 1.1)",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",

View File

@@ -6,8 +6,8 @@
"videoSrc": "string (required if no imageSrc)",
"videoAriaLabel?": "string (default: 'Footer video')",
"columns": "Array<{ title: string, items: Array<{ label: string, href: string }> }> - Footer navigation columns",
"logoText?": "string (default: 'Webild')",
"copyrightText?": "string (default: '© 2025 | Webild')",
"logoText?": "string (default: 'RealWeb')",
"copyrightText?": "string (default: '© 2025 | RealWeb')",
"onPrivacyClick?": "() => void",
"ariaLabel?": "string (default: 'Site footer')",
"className?": "string",

View File

@@ -2,7 +2,7 @@
"name": "NavbarLayoutFloatingInline",
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"brandName?": "string (default: 'Webild')",
"brandName?": "string (default: 'RealWeb')",
"button": "{text: string, onClick?: () => void, href?: string}",
"animateOnLoad?": "boolean (default: true)",
"className?": "string (default: '')",

View File

@@ -3,7 +3,7 @@
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"className?": "string",
"brandName?": "string (default: 'Webild')",
"brandName?": "string (default: 'RealWeb')",
"button": "{text: string, onClick?: () => void, href?: string}",
"buttonClassName?": "string (default: '')",
"buttonTextClassName?": "string (default: '')"

View File

@@ -2,6 +2,6 @@
"name": "NavbarStyleApple",
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"brandName?": "string (default: 'Webild')"
"brandName?": "string (default: 'RealWeb')"
}
}

View File

@@ -4,7 +4,7 @@
"navItems": "Array<{name: string, id: string}>",
"button": "{text: string, onClick?: () => void, href?: string}",
"topBarButton?": "{text: string, onClick?: () => void, href?: string}",
"brandName?": "string (default: 'Webild')",
"brandName?": "string (default: 'RealWeb')",
"className?": "string (default: '')"
}
}

View File

@@ -2,7 +2,7 @@
"name": "NavbarStyleFullscreen",
"propsSchema": {
"navItems": "Array<{name: string, id: string}>",
"brandName?": "string (default: 'Webild')",
"brandName?": "string (default: 'RealWeb')",
"bottomLeftText?": "string (default: 'Global Community')",
"bottomRightText?": "string (default: 'hello@example.com')",
"topBarClassName?": "string (default: '')"

View File

@@ -32,7 +32,7 @@ export default function AboutPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="LocalLaunch"
brandName="RealWeb"
navItems={navItems}
button={{ text: "Get My Website", href: "/contact" }}
animateOnLoad={true}
@@ -42,7 +42,7 @@ export default function AboutPage() {
<div id="about-mission" data-section="about-mission">
<MetricCardFourteen
title="Our Mission: Help Local Businesses Win Online"
tag="About LocalLaunch"
tag="About RealWeb"
tagAnimation="slide-up"
metrics={[
{
@@ -129,7 +129,7 @@ export default function AboutPage() {
],
},
]}
copyrightText="© 2025 LocalLaunch. All rights reserved."
copyrightText="© 2025 RealWeb. All rights reserved."
/>
</div>
</ThemeProvider>

View File

@@ -31,7 +31,7 @@ export default function ContactPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="LocalLaunch"
brandName="RealWeb"
navItems={navItems}
button={{ text: "Get My Website", href: "/contact" }}
animateOnLoad={true}
@@ -57,7 +57,7 @@ export default function ContactPage() {
<div id="trust" data-section="trust">
<SocialProofOne
title="Join Hundreds of Successful Local Businesses"
description="From restaurants to contractors, businesses just like yours are growing online with LocalLaunch."
description="From restaurants to contractors, businesses just like yours are growing online with RealWeb."
tag="Our Network"
tagAnimation="slide-up"
textboxLayout="default"
@@ -97,7 +97,7 @@ export default function ContactPage() {
],
},
]}
copyrightText="© 2025 LocalLaunch. All rights reserved."
copyrightText="© 2025 RealWeb. All rights reserved."
/>
</div>
</ThemeProvider>

File diff suppressed because it is too large Load Diff

View File

@@ -38,7 +38,7 @@ export default function HomePage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="LocalLaunch"
brandName="RealWeb"
navItems={navItems}
button={{ text: "Get My Website", href: "/contact" }}
animateOnLoad={true}
@@ -248,7 +248,7 @@ export default function HomePage() {
],
},
]}
copyrightText="© 2025 LocalLaunch. All rights reserved."
copyrightText="© 2025 RealWeb. All rights reserved."
/>
</div>
</ThemeProvider>

View File

@@ -32,7 +32,7 @@ export default function PortfolioPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="LocalLaunch"
brandName="RealWeb"
navItems={navItems}
button={{ text: "Get My Website", href: "/contact" }}
animateOnLoad={true}
@@ -72,7 +72,7 @@ export default function PortfolioPage() {
useInvertedBackground={true}
testimonials={[
{
id: "1", name: "Maria Garcia, Owner of Bella's Restaurant", date: "Date: March 15, 2024", title: "Our online presence transformed completely", quote: "Within 3 months of launching our new website, we've seen a 40% increase in online reservations. LocalLaunch understood exactly what our restaurant needed to compete with bigger chains.", tag: "Restaurant Owner", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Maria Garcia", imageSrc: "http://img.b2bpic.net/free-vector/interior-design-landing-page_23-2149651585.jpg?_wi=2", imageAlt: "Bella's Restaurant website"},
id: "1", name: "Maria Garcia, Owner of Bella's Restaurant", date: "Date: March 15, 2024", title: "Our online presence transformed completely", quote: "Within 3 months of launching our new website, we've seen a 40% increase in online reservations. RealWeb understood exactly what our restaurant needed to compete with bigger chains.", tag: "Restaurant Owner", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Maria Garcia", imageSrc: "http://img.b2bpic.net/free-vector/interior-design-landing-page_23-2149651585.jpg?_wi=2", imageAlt: "Bella's Restaurant website"},
{
id: "2", name: "James Wilson, Founder of Wilson Plumbing", date: "Date: February 20, 2024", title: "Best investment for my business", quote: "I went from getting 2-3 calls a week to 15+ qualified leads. The website is clean, professional, and my customers love being able to book online. Highly recommend!", tag: "Plumbing Contractor", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "James Wilson", imageSrc: "http://img.b2bpic.net/free-psd/geometric-architecture-project-landing-page_23-2149660455.jpg?_wi=2", imageAlt: "Wilson Plumbing website"},
{
@@ -131,7 +131,7 @@ export default function PortfolioPage() {
],
},
]}
copyrightText="© 2025 LocalLaunch. All rights reserved."
copyrightText="© 2025 RealWeb. All rights reserved."
/>
</div>
</ThemeProvider>

View File

@@ -33,7 +33,7 @@ export default function PricingPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="LocalLaunch"
brandName="RealWeb"
navItems={navItems}
button={{ text: "Get My Website", href: "/contact" }}
animateOnLoad={true}
@@ -136,7 +136,7 @@ export default function PricingPage() {
],
},
]}
copyrightText="© 2025 LocalLaunch. All rights reserved."
copyrightText="© 2025 RealWeb. All rights reserved."
/>
</div>
</ThemeProvider>

View File

@@ -33,7 +33,7 @@ export default function ServicesPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="LocalLaunch"
brandName="RealWeb"
navItems={navItems}
button={{ text: "Get My Website", href: "/contact" }}
animateOnLoad={true}
@@ -142,7 +142,7 @@ export default function ServicesPage() {
],
},
]}
copyrightText="© 2025 LocalLaunch. All rights reserved."
copyrightText="© 2025 RealWeb. All rights reserved."
/>
</div>
</ThemeProvider>

View File

@@ -18,7 +18,7 @@ interface LogoProps {
const Logo = ({
// logoSrc,
// logoAlt = "",
brandName = "Webild",
brandName = "RealWeb",
// className = "",
// imageClassName = "",
textClassName = "",

View File

@@ -23,7 +23,7 @@ interface NavbarLayoutFloatingInlineProps {
const NavbarLayoutFloatingInline = ({
navItems,
brandName = "Webild",
brandName = "RealWeb",
button,
animateOnLoad = true,
className = "",

View File

@@ -28,7 +28,7 @@ const NavbarLayoutFloatingOverlay = ({
// logoSrc,
// logoAlt = "",
className = "",
brandName = "Webild",
brandName = "RealWeb",
button,
buttonClassName = "",
buttonTextClassName = "",

View File

@@ -25,7 +25,7 @@ const NavbarStyleApple = ({
navItems,
// logoSrc,
// logoAlt = "",
brandName = "Webild",
brandName = "RealWeb",
button,
buttonClassName = "",
buttonTextClassName = "",

View File

@@ -57,7 +57,7 @@ const NavbarStyleCentered = ({
topBarButton,
// logoSrc,
// logoAlt = "",
brandName = "Webild",
brandName = "RealWeb",
className = "",
}: NavbarStyleCenteredProps) => {
const [isActive, setIsActive] = useState(false);

View File

@@ -49,7 +49,7 @@ const NavbarStyleFullscreen = ({
navItems,
// logoSrc,
// logoAlt = "",
brandName = "Webild",
brandName = "RealWeb",
bottomLeftText = "Global Community",
bottomRightText = "hello@example.com",
topBarClassName = "",

View File

@@ -30,11 +30,11 @@ interface FooterBaseProps {
const FooterBase = ({
// logoSrc = "/brand/logowhite.svg",
logoText = "Webild",
logoText = "RealWeb",
// logoWidth = 120,
// logoHeight = 40,
columns,
copyrightText = `© 2025 | Webild`,
copyrightText = `© 2025 | RealWeb`,
onPrivacyClick,
ariaLabel = "Site footer",
className = "",

View File

@@ -31,11 +31,11 @@ interface FooterBaseCardProps {
const FooterBaseCard = ({
// logoSrc = "/brand/logowhite.svg",
logoText = "Webild",
logoText = "RealWeb",
// logoWidth = 120,
// logoHeight = 40,
columns,
copyrightText = `© 2025 | Webild`,
copyrightText = `© 2025 | RealWeb`,
onPrivacyClick,
ariaLabel = "Site footer",
className = "",

View File

@@ -26,8 +26,8 @@ interface FooterCardProps {
const FooterCard = ({
// logoSrc,
// logoAlt = "Logo",
logoText = "Webild",
copyrightText = `© 2025 | Webild`,
logoText = "RealWeb",
copyrightText = `© 2025 | RealWeb`,
socialLinks,
ariaLabel = "Site footer",
className = "",

View File

@@ -28,7 +28,7 @@ interface FooterLogoRevealProps {
const FooterLogoReveal = ({
// logoSrc,
// logoAlt = "Logo",
logoText = "Webild",
logoText = "RealWeb",
leftLink,
rightLink,
ariaLabel = "Site footer",

View File

@@ -51,11 +51,11 @@ const FooterMedia = ({
imageAlt = "",
videoAriaLabel = "Footer video",
// logoSrc = "/brand/logowhite.svg",
logoText = "Webild",
logoText = "RealWeb",
// logoWidth = 120,
// logoHeight = 40,
columns,
copyrightText = `© 2025 | Webild`,
copyrightText = `© 2025 | RealWeb`,
onPrivacyClick,
ariaLabel = "Site footer",
className = "",