2 Commits

Author SHA1 Message Date
8b9feb7a13 Update src/app/page.tsx 2026-03-08 19:15:46 +00:00
0b47730168 Update src/app/layout.tsx 2026-03-08 19:15:45 +00:00
2 changed files with 1373 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -35,7 +35,7 @@ export default function LandingPage() {
contentWidth="mediumLarge" contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles" sizing="mediumLargeSizeMediumTitles"
background="grid" background="grid"
cardStyle="gradient-mesh" cardStyle="glass-elevated"
primaryButtonStyle="radial-glow" primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid" secondaryButtonStyle="solid"
headingFontWeight="normal" headingFontWeight="normal"
@@ -180,6 +180,7 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
carouselMode="buttons" carouselMode="buttons"
cardClassName="backdrop-blur-md bg-white/10 border border-white/20"
/> />
</div> </div>
@@ -214,6 +215,8 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
animationType="smooth" animationType="smooth"
showCard={true}
accordionClassName="backdrop-blur-md bg-white/10 border border-white/20 rounded-lg"
/> />
</div> </div>
@@ -228,6 +231,7 @@ export default function LandingPage() {
inputPlaceholder="Enter your email address" inputPlaceholder="Enter your email address"
buttonText="Create My Website" buttonText="Create My Website"
termsText="We respect your privacy. No spam. Unsubscribe anytime." termsText="We respect your privacy. No spam. Unsubscribe anytime."
formWrapperClassName="backdrop-blur-md bg-white/10 border border-white/20 rounded-lg p-6"
/> />
</div> </div>
@@ -250,4 +254,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }