8 Commits

Author SHA1 Message Date
6a81ee573a Update src/app/page.tsx 2025-12-26 09:18:18 +00:00
056be1abd8 Update src/app/page.tsx 2025-12-26 09:12:49 +00:00
80b8c435a8 Update src/app/page.tsx 2025-12-26 09:10:55 +00:00
b4f9a4e328 Update src/app/page.tsx 2025-12-26 09:08:57 +00:00
fe42506d50 Update src/app/page.tsx 2025-12-26 09:02:46 +00:00
16051a3e12 Update src/app/layout.tsx 2025-12-26 09:02:45 +00:00
f1fa7bdc41 Update src/app/page.tsx 2025-12-26 08:59:10 +00:00
8be8cd5d21 Update src/app/layout.tsx 2025-12-26 08:59:09 +00:00

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -10,21 +10,22 @@ import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import TextAnimation from '@/components/text/TextAnimation';
import { Users, TrendingUp, Zap, Award, Sparkles } from 'lucide-react'; import { Users, TrendingUp, Zap, Award, Sparkles } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant={"icon-arrow"} defaultButtonVariant="icon-arrow"
defaultTextAnimation={"reveal-blur"} defaultTextAnimation="reveal-blur"
borderRadius={"pill"} borderRadius="pill"
contentWidth={"medium"} contentWidth="medium"
sizing={"mediumLarge"} sizing="mediumLarge"
background={"noiseGradient"} background="noiseGradient"
cardStyle={"gradient-radial"} cardStyle="gradient-radial"
primaryButtonStyle={"radial-glow"} primaryButtonStyle="radial-glow"
secondaryButtonStyle={"outline"} secondaryButtonStyle="outline"
headingFontWeight={"medium"} headingFontWeight="medium"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
@@ -45,15 +46,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogo <HeroLogo
logoText="TechVision" title="Welcome to our company"
description="Transforming businesses through innovative IT solutions and strategic technology partnerships" description="Delivering excellence in IT solutions since 2015, serving over 300 enterprise clients worldwide"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739283383-4enee5x3.jpg"
logoAlt="TechVision Logo"
buttons={[ buttons={[
{ text: "Explore Services", href: "services" }, { text: "Get Started", href: "#contact" },
{ text: "Schedule Consultation", href: "contact" } { text: "Learn More", href: "#about" }
]} ]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739283383-4enee5x3.jpg"
imageAlt="Modern office workspace"
showDimOverlay={true}
/> />
</div> </div>
@@ -120,7 +120,7 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardThree <PricingCardThree
title="Flexible Engagement Models" title="Flexible Pricing Plans"
description="Choose the right partnership model for your organization" description="Choose the right partnership model for your organization"
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
@@ -335,6 +335,14 @@ export default function LandingPage() {
]} ]}
/> />
</div> </div>
<div className="flex justify-center my-8">
<TextAnimation
type="entrance-slide"
title="Welcome to our company"
variant="trigger"
/>
</div>
</ThemeProvider> </ThemeProvider>
); );
} }