Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2fa6db7fa4 | |||
| d2b582ae2a | |||
| 000d70f16e | |||
| 1fe33983d0 | |||
| dba45c059a | |||
| e8ea416dc1 | |||
| 93bea6cdc6 | |||
| d1f824898b | |||
| 1fdb7c49af | |||
| 4e00408f7c | |||
| d8803b9181 | |||
| 328382eec6 | |||
| a5ca0ad154 | |||
| 075e637271 | |||
| 7e0ecb0e0d | |||
| 7a7670fad9 | |||
| 0fc3626d96 | |||
| 78277fada2 | |||
| d6887ac55b | |||
| 05b27a0c00 | |||
| b9c07bf37b | |||
| 27ba72252c |
77
src/app/about/page.tsx
Normal file
77
src/app/about/page.tsx
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
|
import { Globe, Star, Users, Twitter, Instagram, Linkedin } from "lucide-react";
|
||||||
|
|
||||||
|
export default function AboutPage() {
|
||||||
|
const navItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Work", id: "/work" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="icon-arrow"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="layered-gradient"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={navItems}
|
||||||
|
brandName="Web Design Tech360"
|
||||||
|
button={{ text: "Get in Touch", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
<div id="about" data-section="about">
|
||||||
|
<SplitAbout
|
||||||
|
title="About Web Design Tech360"
|
||||||
|
description="Web Design Tech360 is a leading digital agency dedicated to transforming businesses through innovative web design, development, and strategic digital marketing. With over 15 years of experience, we partner with clients worldwide to create impactful online experiences that drive growth and deliver measurable results."
|
||||||
|
tag="Our Story"
|
||||||
|
bulletPoints={[
|
||||||
|
{ title: "Mission", description: "To empower businesses with exceptional digital solutions that enhance their online presence and achieve their strategic objectives.", icon: Globe },
|
||||||
|
{ title: "Vision", description: "To be the go-to partner for transformative web design and digital growth, recognized for creativity, technical excellence, and client success.", icon: Star },
|
||||||
|
{ title: "Values", description: "Innovation, Integrity, Collaboration, Excellence, Client-Centricity.", icon: Users }
|
||||||
|
]}
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/team/team1.webp"
|
||||||
|
imageAlt="Web Design Tech360 Team Collaboration"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
textboxLayout="default"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<ContactText
|
||||||
|
text="Ready to elevate your online presence? Let's build your next digital success story together."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Start a Project", href: "/contact" },
|
||||||
|
{ text: "Schedule a Call", href: "/contact#schedule-call" }
|
||||||
|
]}
|
||||||
|
background={{ variant: "canvas-reveal" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
<FooterCard
|
||||||
|
logoText="Web Design Tech360"
|
||||||
|
copyrightText="© 2025 Web Design Tech360. All rights reserved."
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" },
|
||||||
|
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
|
||||||
|
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "Connect on LinkedIn" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
62
src/app/contact/page.tsx
Normal file
62
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
import { Phone, Mail, Twitter, Instagram, Linkedin } from "lucide-react";
|
||||||
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
const navItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="icon-arrow"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="layered-gradient"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={navItems}
|
||||||
|
brandName="Web Design Tech360"
|
||||||
|
button={{ text: "Get in Touch", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
<div id="contact-cta" data-section="contact-cta">
|
||||||
|
<ContactCTA
|
||||||
|
tag="Contact Us"
|
||||||
|
tagIcon={Mail}
|
||||||
|
title="Get in Touch with Web Design Tech360"
|
||||||
|
description="Reach out to us via email or phone for inquiries, project discussions, or support."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Email Us", href: "mailto:info@webdesigntech360.com" },
|
||||||
|
{ text: "Call Us", href: "tel:+919672864324" }
|
||||||
|
]}
|
||||||
|
background={{ variant: "radial-gradient" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterCard
|
||||||
|
logoText="Web Design Tech360"
|
||||||
|
copyrightText="© 2025 Web Design Tech360. All rights reserved."
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" },
|
||||||
|
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
|
||||||
|
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "Connect on LinkedIn" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
357
src/app/page.tsx
357
src/app/page.tsx
@@ -2,24 +2,34 @@
|
|||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
|
||||||
import TextAbout from "@/components/sections/about/TextAbout";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
import { Sparkles, Users, Globe, Zap, Star, Layers, Twitter, Instagram, Linkedin } from "lucide-react";
|
|
||||||
|
// All unique section components
|
||||||
|
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||||
|
import SplitAbout from "@/components/sections/about/SplitAbout"; // from about/page.tsx
|
||||||
|
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; // from page.tsx (Services)
|
||||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; // (Our Process)
|
||||||
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; // from work/page.tsx (Work)
|
||||||
import { Check, Code, Palette, TrendingUp } from "lucide-react";
|
import ContactText from "@/components/sections/contact/ContactText"; // from page.tsx (General contact CTA)
|
||||||
import ContactText from "@/components/sections/contact/ContactText";
|
import ContactCTA from "@/components/sections/contact/ContactCTA"; // from contact/page.tsx (Detailed contact section)
|
||||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
|
|
||||||
|
// All unique Lucide icons
|
||||||
|
import {
|
||||||
|
Sparkles, Users, Globe, Zap, Star, Layers, Twitter, Instagram, Linkedin,
|
||||||
|
Check, Code, Palette, TrendingUp, Phone, Mail, ShoppingCart, ShieldCheck, HardDrive,
|
||||||
|
Briefcase
|
||||||
|
} from "lucide-react";
|
||||||
|
|
||||||
export default function WebAgencyThemePage() {
|
export default function WebAgencyThemePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "#home" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "About", id: "#about" },
|
||||||
{ name: "Work", id: "work" },
|
{ name: "Services", id: "#services" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Work", id: "#work" },
|
||||||
|
{ name: "Contact", id: "#contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -38,105 +48,96 @@ export default function WebAgencyThemePage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
brandName="Studio"
|
brandName="Web Design Tech360"
|
||||||
button={{ text: "Get in Touch", href: "#contact" }}
|
button={{ text: "Get in Touch", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
<HeroSplitKpi
|
|
||||||
background={{ variant: "radial-gradient" }}
|
<div id="home" data-section="home">
|
||||||
tag="Award-Winning Agency"
|
<HeroSplitKpi
|
||||||
tagIcon={Sparkles}
|
background={{ variant: "radial-gradient" }}
|
||||||
title="We Build Digital Experiences"
|
tag="Award-Winning Agency"
|
||||||
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
|
tagIcon={Sparkles}
|
||||||
enableKpiAnimation={true}
|
title="We Build Digital Experiences"
|
||||||
kpis={[
|
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
|
||||||
{ value: "150+", label: "Projects Delivered" },
|
enableKpiAnimation={true}
|
||||||
{ value: "98%", label: "Client Satisfaction" },
|
kpis={[
|
||||||
{ value: "12+", label: "Years Experience" },
|
{ value: "150+", label: "Projects Delivered" },
|
||||||
]}
|
{ value: "98%", label: "Client Satisfaction" },
|
||||||
buttons={[
|
{ value: "12+", label: "Years Experience" },
|
||||||
{
|
]}
|
||||||
text: "Start Project",
|
buttons={[
|
||||||
href: "#contact",
|
{
|
||||||
},
|
text: "Start Project", href: "#contact"
|
||||||
{
|
},
|
||||||
text: "View Work",
|
{
|
||||||
href: "#work",
|
text: "View Work", href: "#work"
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
avatars={[
|
avatars={[
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp", alt: "Team member 1" },
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp", alt: "Team member 1" },
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp", alt: "Team member 2" },
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp", alt: "Team member 2" },
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp", alt: "Team member 3" }
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp", alt: "Team member 3" }
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by startups and Fortune 500 companies"
|
avatarText="Trusted by startups and Fortune 500 companies"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero1.webp"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero1.webp?_wi=1"
|
||||||
imageAlt="Web design showcase"
|
imageAlt="Web design showcase"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
showMarqueeCard={false}
|
showMarqueeCard={false}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/logo.svg", alt: "Logo" },
|
||||||
]}
|
]}
|
||||||
marqueeClassName="md:mb-5"
|
marqueeClassName="md:mb-5"
|
||||||
/>
|
/>
|
||||||
<TextAbout
|
</div>
|
||||||
title="We craft digital experiences that captivate audiences and drive meaningful results for ambitious brands worldwide."
|
|
||||||
buttons={[
|
<div id="about" data-section="about">
|
||||||
{ text: "Our Process", href: "#process" },
|
<SplitAbout
|
||||||
{ text: "Meet the Team", href: "#team" },
|
title="About Web Design Tech360"
|
||||||
]}
|
description="Web Design Tech360 is a leading digital agency dedicated to transforming businesses through innovative web design, development, and strategic digital marketing. With over 15 years of experience, we partner with clients worldwide to create impactful online experiences that drive growth and deliver measurable results."
|
||||||
useInvertedBackground={false}
|
tag="Our Story"
|
||||||
/>
|
bulletPoints={[
|
||||||
<FeatureCardNineteen
|
{ title: "Mission", description: "To empower businesses with exceptional digital solutions that enhance their online presence and achieve their strategic objectives.", icon: Globe },
|
||||||
title="Our Services"
|
{ title: "Vision", description: "To be the go-to partner for transformative web design and digital growth, recognized for creativity, technical excellence, and client success.", icon: Star },
|
||||||
description="A proven methodology that delivers results consistently across every project."
|
{ title: "Values", description: "Innovation, Integrity, Collaboration, Excellence, Client-Centricity.", icon: Users }
|
||||||
tag="What We Do"
|
]}
|
||||||
tagIcon={Layers}
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/team/team1.webp"
|
||||||
features={[
|
imageAlt="Web Design Tech360 Team Collaboration"
|
||||||
{
|
mediaAnimation="slide-up"
|
||||||
tag: "Service 01",
|
useInvertedBackground={true}
|
||||||
title: "01",
|
textboxLayout="default"
|
||||||
subtitle: "Web Development",
|
/>
|
||||||
description: "Your website should be more than functional—it should resonate. We craft bespoke digital experiences that merge innovation with creativity, delivering intuitive, visually stunning platforms that captivate audiences, reflect your brand's essence, and adapt to future opportunities.",
|
</div>
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process1.webp",
|
|
||||||
imageAlt: "Web development",
|
<div id="services" data-section="services">
|
||||||
},
|
<FeatureCardNineteen
|
||||||
{
|
title="Our Services"
|
||||||
tag: "Service 02",
|
description="A proven methodology that delivers results consistently across every project."
|
||||||
title: "02",
|
tag="What We Do"
|
||||||
subtitle: "Marketing",
|
tagIcon={Layers}
|
||||||
description: "Impactful marketing goes beyond visibility—it creates connections. We fuse creativity with analytics to craft adaptive strategies that engage your audience authentically, keeping your brand relevant and resonant while delivering measurable results in an ever-evolving digital world.",
|
features={[
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process2.webp",
|
{
|
||||||
imageAlt: "Marketing",
|
tag: "Service 01", title: "01", subtitle: "Web Development", description: "Your website should be more than functional—it should resonate. We craft bespoke digital experiences that merge innovation with creativity, delivering intuitive, visually stunning platforms that captivate audiences, reflect your brand's essence, and adapt to future opportunities.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process1.webp", imageAlt: "Web development"},
|
||||||
},
|
{
|
||||||
{
|
tag: "Service 02", title: "02", subtitle: "Marketing", description: "Impactful marketing goes beyond visibility—it creates connections. We fuse creativity with analytics to craft adaptive strategies that engage your audience authentically, keeping your brand relevant and resonant while delivering measurable results in an ever-evolving digital world.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process2.webp", imageAlt: "Marketing"},
|
||||||
tag: "Service 03",
|
{
|
||||||
title: "03",
|
tag: "Service 03", title: "03", subtitle: "Design", description: "Design is your brand's voice. We craft visuals and layouts that communicate purpose, inspire trust, and connect emotionally. By harmonizing artistry with intent, our designs transform user interactions into meaningful, memorable experiences that align with your identity.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process3.webp", imageAlt: "Design"},
|
||||||
subtitle: "Design",
|
{
|
||||||
description: "Design is your brand's voice. We craft visuals and layouts that communicate purpose, inspire trust, and connect emotionally. By harmonizing artistry with intent, our designs transform user interactions into meaningful, memorable experiences that align with your identity.",
|
tag: "Service 04", title: "04", subtitle: "Software Development", description: "We build custom software that evolves with your business. By addressing unique challenges, our tailored solutions streamline workflows, eliminate inefficiencies, and foster innovation—empowering you to scale, adapt, and maintain a competitive edge in an ever-changing landscape.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process4.webp", imageAlt: "Software development"},
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process3.webp",
|
]}
|
||||||
imageAlt: "Design",
|
textboxLayout="default"
|
||||||
},
|
useInvertedBackground={false}
|
||||||
{
|
/>
|
||||||
tag: "Service 04",
|
</div>
|
||||||
title: "04",
|
|
||||||
subtitle: "Software Development",
|
|
||||||
description: "We build custom software that evolves with your business. By addressing unique challenges, our tailored solutions streamline workflows, eliminate inefficiencies, and foster innovation—empowering you to scale, adapt, and maintain a competitive edge in an ever-changing landscape.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process4.webp",
|
|
||||||
imageAlt: "Software development",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
<MetricCardOne
|
<MetricCardOne
|
||||||
title="Results That Speak"
|
title="Results That Speak"
|
||||||
description="Our track record of delivering exceptional digital solutions for clients across industries."
|
description="Our track record of delivering exceptional digital solutions for clients across industries."
|
||||||
@@ -152,6 +153,7 @@ export default function WebAgencyThemePage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<TestimonialCardFive
|
<TestimonialCardFive
|
||||||
title="What Our Clients Say"
|
title="What Our Clients Say"
|
||||||
description="Hear from the brands we've helped transform through innovative digital solutions."
|
description="Hear from the brands we've helped transform through innovative digital solutions."
|
||||||
@@ -159,57 +161,18 @@ export default function WebAgencyThemePage() {
|
|||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah Johnson", date: "CEO, TechStart", title: "Transformed Our Digital Presence", quote: "Working with Studio was a game-changer for our startup. They delivered a website that not only looks stunning but converts visitors into customers at twice our previous rate.", tag: "Web Development", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp", avatarAlt: "Sarah Johnson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp?_wi=1", imageAlt: "TechStart project showcase"},
|
||||||
name: "Sarah Johnson",
|
|
||||||
date: "CEO, TechStart",
|
|
||||||
title: "Transformed Our Digital Presence",
|
|
||||||
quote: "Working with Studio was a game-changer for our startup. They delivered a website that not only looks stunning but converts visitors into customers at twice our previous rate.",
|
|
||||||
tag: "Web Development",
|
|
||||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp",
|
|
||||||
avatarAlt: "Sarah Johnson",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp",
|
|
||||||
imageAlt: "TechStart project showcase",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael Chen", date: "Founder, GrowthLab", title: "Exceeded All Expectations", quote: "The team's attention to detail and creative vision brought our brand to life in ways we never imagined. Our new platform has received incredible feedback from users.", tag: "Brand Design", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp", avatarAlt: "Michael Chen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp?_wi=1", imageAlt: "GrowthLab project showcase"},
|
||||||
name: "Michael Chen",
|
|
||||||
date: "Founder, GrowthLab",
|
|
||||||
title: "Exceeded All Expectations",
|
|
||||||
quote: "The team's attention to detail and creative vision brought our brand to life in ways we never imagined. Our new platform has received incredible feedback from users.",
|
|
||||||
tag: "Brand Design",
|
|
||||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp",
|
|
||||||
avatarAlt: "Michael Chen",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp",
|
|
||||||
imageAlt: "GrowthLab project showcase",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Emily Rodriguez", date: "Marketing Director, Elevate", title: "A True Partnership", quote: "From strategy to execution, Studio understood our vision and delivered beyond what we hoped for. The new website has become our most powerful marketing asset.", tag: "E-commerce", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp", avatarAlt: "Emil Svenson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp?_wi=1", imageAlt: "Elevate project showcase"},
|
||||||
name: "Emily Rodriguez",
|
|
||||||
date: "Marketing Director, Elevate",
|
|
||||||
title: "A True Partnership",
|
|
||||||
quote: "From strategy to execution, Studio understood our vision and delivered beyond what we hoped for. The new website has become our most powerful marketing asset.",
|
|
||||||
tag: "E-commerce",
|
|
||||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp",
|
|
||||||
avatarAlt: "Emil Svenson",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp",
|
|
||||||
imageAlt: "Elevate project showcase",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David Park", date: "CTO, InnovateCo", title: "Technical Excellence", quote: "The development team delivered a high-performance application that handles our complex requirements with ease. Their technical expertise is unmatched in the industry.", tag: "Web Application", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero5.webp", avatarAlt: "David Park", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero5.webp?_wi=1", imageAlt: "InnovateCo project showcase"},
|
||||||
name: "David Park",
|
|
||||||
date: "CTO, InnovateCo",
|
|
||||||
title: "Technical Excellence",
|
|
||||||
quote: "The development team delivered a high-performance application that handles our complex requirements with ease. Their technical expertise is unmatched in the industry.",
|
|
||||||
tag: "Web Application",
|
|
||||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero5.webp",
|
|
||||||
avatarAlt: "David Park",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero5.webp",
|
|
||||||
imageAlt: "InnovateCo project showcase",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<FeatureCardTen
|
<FeatureCardTen
|
||||||
tag="How We Work"
|
tag="How We Work"
|
||||||
tagIcon={Layers}
|
tagIcon={Layers}
|
||||||
@@ -220,9 +183,7 @@ export default function WebAgencyThemePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Discovery & Strategy",
|
title: "Discovery & Strategy", description: "We start by understanding your goals, audience, and market to build a roadmap tailored to your business.", media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how1.webp", imageAlt: "Discovery and strategy" },
|
||||||
description: "We start by understanding your goals, audience, and market to build a roadmap tailored to your business.",
|
|
||||||
media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how1.webp", imageAlt: "Discovery and strategy" },
|
|
||||||
reverse: false,
|
reverse: false,
|
||||||
items: [
|
items: [
|
||||||
{ icon: Code, text: "In-depth research and audits" },
|
{ icon: Code, text: "In-depth research and audits" },
|
||||||
@@ -231,9 +192,7 @@ export default function WebAgencyThemePage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Design & Prototyping",
|
title: "Design & Prototyping", description: "We translate strategy into visual concepts, iterating with you until every detail feels right.", media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how2.webp?_wi=1", imageAlt: "Design and prototyping" },
|
||||||
description: "We translate strategy into visual concepts, iterating with you until every detail feels right.",
|
|
||||||
media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how2.webp", imageAlt: "Design and prototyping" },
|
|
||||||
reverse: true,
|
reverse: true,
|
||||||
items: [
|
items: [
|
||||||
{ icon: Palette, text: "Wireframes and mockups" },
|
{ icon: Palette, text: "Wireframes and mockups" },
|
||||||
@@ -242,9 +201,7 @@ export default function WebAgencyThemePage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Build & Launch",
|
title: "Build & Launch", description: "We develop, test, and deploy your project with precision, ensuring a smooth launch and measurable impact.", media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how3.webp", imageAlt: "Build and launch" },
|
||||||
description: "We develop, test, and deploy your project with precision, ensuring a smooth launch and measurable impact.",
|
|
||||||
media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how3.webp", imageAlt: "Build and launch" },
|
|
||||||
reverse: false,
|
reverse: false,
|
||||||
items: [
|
items: [
|
||||||
{ icon: TrendingUp, text: "Agile development sprints" },
|
{ icon: TrendingUp, text: "Agile development sprints" },
|
||||||
@@ -254,18 +211,74 @@ export default function WebAgencyThemePage() {
|
|||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<ContactText
|
|
||||||
text="Ready to transform your digital presence? Let's create something extraordinary together."
|
<div id="work" data-section="work">
|
||||||
buttons={[
|
<ProductCardTwo
|
||||||
{ text: "Start a Project", href: "#contact" },
|
title="Our Web Design & Development Portfolio"
|
||||||
{ text: "Schedule a Call", href: "#call" },
|
description="Explore our recent projects that showcase our expertise in creating impactful digital experiences across various industries."
|
||||||
]}
|
tag="Our Work"
|
||||||
background={{ variant: "canvas-reveal" }}
|
tagIcon={Briefcase}
|
||||||
useInvertedBackground={false}
|
textboxLayout="default"
|
||||||
/>
|
animationType="slide-up"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
uniformGridCustomHeightClasses="min-h-[300px] lg:min-h-[400px]"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
products={[
|
||||||
|
{
|
||||||
|
id: "1", name: "Innovate Solutions", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero1.webp?_wi=2", imageAlt: "Modern Business Website"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", name: "ShopSphere", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp?_wi=1", imageAlt: "E-commerce Platform Redesign"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", name: "Global Connect", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp?_wi=1", imageAlt: "Corporate WordPress Site"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", name: "LaunchPad", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp?_wi=1", imageAlt: "Startup Landing Page"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "5", name: "DataDash App", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero5.webp?_wi=2", imageAlt: "Custom Web Application"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "6", name: "Creative Canvas", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how2.webp?_wi=2", imageAlt: "Portfolio Site for Artist"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactText
|
||||||
|
text="Ready to transform your digital presence? Let's create something extraordinary together."
|
||||||
|
buttons= {[
|
||||||
|
{ text: "Start a Project", href: "#contact" },
|
||||||
|
{ text: "Schedule a Call", href: "#contact" },
|
||||||
|
]}
|
||||||
|
background={{ variant: "canvas-reveal" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
<ContactCTA
|
||||||
|
tag="Contact Us"
|
||||||
|
tagIcon={Mail}
|
||||||
|
title="Get in Touch with Web Design Tech360"
|
||||||
|
description="Reach out to us via email or phone for inquiries, project discussions, or support."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Email Us", href: "mailto:info@webdesigntech360.com" },
|
||||||
|
{ text: "Call Us", href: "tel:+919672864324" }
|
||||||
|
]}
|
||||||
|
background={{ variant: "radial-gradient" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<FooterCard
|
<FooterCard
|
||||||
logoText="Studio"
|
logoText="Web Design Tech360"
|
||||||
copyrightText="© 2025 Studio. All rights reserved."
|
copyrightText="© 2025 Web Design Tech360. All rights reserved."
|
||||||
socialLinks={[
|
socialLinks={[
|
||||||
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" },
|
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" },
|
||||||
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
|
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
|
||||||
|
|||||||
83
src/app/services/page.tsx
Normal file
83
src/app/services/page.tsx
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||||
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
|
import { Twitter, Instagram, Linkedin } from "lucide-react";
|
||||||
|
import { Layers, Palette, Code, TrendingUp, ShoppingCart, ShieldCheck, HardDrive } from "lucide-react";
|
||||||
|
|
||||||
|
export default function ServicesPage() {
|
||||||
|
const navItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Work", id: "/work" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="icon-arrow"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="layered-gradient"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={navItems}
|
||||||
|
brandName="Studio"
|
||||||
|
button={{ text: "Get in Touch", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
<div id="services" data-section="services">
|
||||||
|
<FeatureCardEight
|
||||||
|
title="Our Web Design & Development Services"
|
||||||
|
description="Web Design Tech360 offers a comprehensive suite of services to build and maintain your online presence, ensuring digital success."
|
||||||
|
tag="What We Offer"
|
||||||
|
tagIcon={Layers}
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
title: "Website Design", description: "Crafting visually stunning and user-friendly website designs that captivate your audience and reflect your brand identity.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process3.webp", imageAlt: "Website Design"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Website Development", description: "Bringing designs to life with robust and scalable website development, ensuring seamless functionality and performance.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process1.webp", imageAlt: "Website Development"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "WordPress Development", description: "Specializing in custom WordPress solutions, from bespoke themes and plugins to comprehensive platform management.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process4.webp", imageAlt: "WordPress Development"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Ecommerce Websites", description: "Building powerful online stores that drive sales and provide an intuitive shopping experience for your customers.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how3.webp", imageAlt: "Ecommerce Websites"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "SEO Optimization", description: "Boosting your visibility on search engines, driving organic traffic and increasing your online reach with expert SEO strategies.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/process/process2.webp", imageAlt: "SEO Optimization"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Website Maintenance", description: "Ensuring your website remains secure, updated, and performing optimally with our ongoing maintenance services.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how1.webp", imageAlt: "Website Maintenance"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Web Hosting", description: "Reliable and secure web hosting solutions tailored to your needs, ensuring fast loading times and maximum uptime.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how2.webp", imageAlt: "Web Hosting"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterCard
|
||||||
|
logoText="Studio"
|
||||||
|
copyrightText="© 2025 Studio. All rights reserved."
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" },
|
||||||
|
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
|
||||||
|
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "Connect on LinkedIn" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
88
src/app/work/page.tsx
Normal file
88
src/app/work/page.tsx
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||||
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
|
import { Twitter, Instagram, Linkedin, Briefcase } from "lucide-react";
|
||||||
|
|
||||||
|
export default function WorkPage() {
|
||||||
|
const navItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Work", id: "/work" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="icon-arrow"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="layered-gradient"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={navItems}
|
||||||
|
brandName="Studio"
|
||||||
|
button={{ text: "Get in Touch", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
<div id="work" data-section="work">
|
||||||
|
<ProductCardTwo
|
||||||
|
title="Our Web Design & Development Portfolio"
|
||||||
|
description="Explore our recent projects that showcase our expertise in creating impactful digital experiences across various industries."
|
||||||
|
tag="Our Work"
|
||||||
|
tagIcon={Briefcase}
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
uniformGridCustomHeightClasses="min-h-[300px] lg:min-h-[400px]"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
products={[
|
||||||
|
{
|
||||||
|
id: "1", name: "Innovate Solutions", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero1.webp", imageAlt: "Modern Business Website"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", name: "ShopSphere", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp?_wi=1", imageAlt: "E-commerce Platform Redesign"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", name: "Global Connect", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp?_wi=1", imageAlt: "Corporate WordPress Site"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", name: "LaunchPad", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp?_wi=1", imageAlt: "Startup Landing Page"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "5", name: "DataDash App", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero5.webp", imageAlt: "Custom Web Application"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "6", name: "Creative Canvas", brand: "Client Project", price: "", rating: 5,
|
||||||
|
reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/services/how2.webp", imageAlt: "Portfolio Site for Artist"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterCard
|
||||||
|
logoText="Studio"
|
||||||
|
copyrightText="© 2025 Studio. All rights reserved."
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" },
|
||||||
|
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
|
||||||
|
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "Connect on LinkedIn" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user