Merge version_1 into main #11

Merged
bender merged 2 commits from version_1 into main 2026-04-08 14:44:59 +00:00
2 changed files with 20 additions and 4 deletions

View File

@@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google";
export const metadata: Metadata = {
title: '.AL FARO | Pizza al Taglio Premium',
description: 'La pizza al taglio più desiderata. Esperienza gourmet e ingredienti di altissima qualità.',
title: 'Webild - Innovative Solutions',
description: 'We provide top-tier services to help your business scale efficiently.',
openGraph: {
"title": ".AL FARO",
"siteName": ".AL FARO Pizza al Taglio",

View File

@@ -9,7 +9,6 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { ArrowRight, Star, Mail, MapPin, Phone } from 'lucide-react';
export default function HomePage() {
const navItems = [
@@ -19,7 +18,18 @@ export default function HomePage() {
];
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
@@ -33,6 +43,7 @@ export default function HomePage() {
description="We provide top-tier services to help your business scale efficiently."
buttons={[{ text: "Get Started", href: "/contact" }]}
background={{ variant: "gradient-bars" }}
mediaAnimation="slide-up"
/>
</div>
@@ -42,6 +53,7 @@ export default function HomePage() {
title="Trusted by Industry Leaders"
description="Join thousands of satisfied clients."
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
@@ -49,6 +61,7 @@ export default function HomePage() {
<MediaAbout
title="Our Approach"
description="We believe in quality and transparency in every project we take on."
useInvertedBackground={false}
/>
</div>
@@ -59,6 +72,7 @@ export default function HomePage() {
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", brand: "Brand A", name: "Product 1", price: "$99", rating: 5, reviewCount: "100", imageSrc: "/images/p1.jpg" },
{ id: "2", brand: "Brand B", name: "Product 2", price: "$149", rating: 4, reviewCount: "85", imageSrc: "/images/p2.jpg" },
@@ -74,6 +88,7 @@ export default function HomePage() {
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "John Doe", role: "CEO", company: "Tech Corp", rating: 5 },
{ id: "t2", name: "Jane Smith", role: "CTO", company: "Web Inc", rating: 5 }
@@ -89,6 +104,7 @@ export default function HomePage() {
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true }
]}
useInvertedBackground={false}
/>
</div>