18 Commits

Author SHA1 Message Date
2fa6db7fa4 Merge version_4 into main
Merge version_4 into main
2026-06-01 05:17:27 +00:00
d2b582ae2a Update src/app/page.tsx 2026-06-01 05:17:24 +00:00
000d70f16e Merge version_4 into main
Merge version_4 into main
2026-06-01 05:17:03 +00:00
1fe33983d0 Update src/app/page.tsx 2026-06-01 05:17:00 +00:00
dba45c059a Merge version_3 into main
Merge version_3 into main
2026-06-01 05:10:08 +00:00
e8ea416dc1 Update src/app/work/page.tsx 2026-06-01 05:10:05 +00:00
93bea6cdc6 Merge version_3 into main
Merge version_3 into main
2026-06-01 05:09:35 +00:00
d1f824898b Update src/app/work/page.tsx 2026-06-01 05:09:32 +00:00
1fdb7c49af Update src/app/contact/page.tsx 2026-06-01 05:09:31 +00:00
4e00408f7c Update src/app/about/page.tsx 2026-06-01 05:09:31 +00:00
d8803b9181 Merge version_3 into main
Merge version_3 into main
2026-06-01 05:08:46 +00:00
328382eec6 Update src/app/work/page.tsx 2026-06-01 05:08:43 +00:00
a5ca0ad154 Add src/app/services/page.tsx 2026-06-01 05:08:43 +00:00
075e637271 Update src/app/page.tsx 2026-06-01 05:08:43 +00:00
7e0ecb0e0d Add src/app/contact/page.tsx 2026-06-01 05:08:42 +00:00
7a7670fad9 Add src/app/about/page.tsx 2026-06-01 05:08:42 +00:00
0fc3626d96 Merge version_2 into main
Merge version_2 into main
2026-06-01 05:02:59 +00:00
05b27a0c00 Merge version_2 into main
Merge version_2 into main
2026-06-01 05:02:31 +00:00
5 changed files with 445 additions and 170 deletions

77
src/app/about/page.tsx Normal file
View 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
View 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>
);
}

View File

@@ -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,79 +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" }}
tag="Award-Winning Agency"
tagIcon={Sparkles}
title="We Build Digital Experiences"
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
enableKpiAnimation={true}
kpis={[
{ value: "150+", label: "Projects Delivered" },
{ value: "98%", label: "Client Satisfaction" },
{ value: "12+", label: "Years Experience" },
]}
buttons={[
{
text: "Start Project", href: "/contact"
},
{
text: "View Work", href: "/work"
},
]}
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/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" }
]}
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"
imageAlt="Web design showcase"
mediaAnimation="slide-up"
showMarqueeCard={false}
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" },
]}
marqueeClassName="md:mb-5"
/>
<TextAbout
title="We craft digital experiences that captivate audiences and drive meaningful results for ambitious brands worldwide."
buttons={[
{ text: "Our Process", href: "#process" },
{ text: "Meet the Team", href: "#team" },
]}
useInvertedBackground={false}
/>
<FeatureCardNineteen
title="Our Services"
description="A proven methodology that delivers results consistently across every project."
tag="What We Do"
tagIcon={Layers}
features={[
{
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", 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"},
{
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"},
]}
textboxLayout="default"
useInvertedBackground={false}
/> />
<div id="home" data-section="home">
<HeroSplitKpi
background={{ variant: "radial-gradient" }}
tag="Award-Winning Agency"
tagIcon={Sparkles}
title="We Build Digital Experiences"
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
enableKpiAnimation={true}
kpis={[
{ value: "150+", label: "Projects Delivered" },
{ value: "98%", label: "Client Satisfaction" },
{ value: "12+", label: "Years Experience" },
]}
buttons={[
{
text: "Start Project", href: "#contact"
},
{
text: "View Work", href: "#work"
},
]}
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/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" }
]}
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?_wi=1"
imageAlt="Web design showcase"
mediaAnimation="slide-up"
showMarqueeCard={false}
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" },
]}
marqueeClassName="md:mb-5"
/>
</div>
<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>
<div id="services" data-section="services">
<FeatureCardNineteen
title="Our Services"
description="A proven methodology that delivers results consistently across every project."
tag="What We Do"
tagIcon={Layers}
features={[
{
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", 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"},
{
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"},
]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<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."
@@ -126,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."
@@ -139,11 +167,12 @@ export default function WebAgencyThemePage() {
{ {
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"}, 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"},
{ {
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", imageAlt: "InnovateCo project showcase"}, 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"},
]} ]}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
/> />
<FeatureCardTen <FeatureCardTen
tag="How We Work" tag="How We Work"
tagIcon={Layers} tagIcon={Layers}
@@ -163,7 +192,7 @@ export default function WebAgencyThemePage() {
], ],
}, },
{ {
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", imageAlt: "Design and 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" },
reverse: true, reverse: true,
items: [ items: [
{ icon: Palette, text: "Wireframes and mockups" }, { icon: Palette, text: "Wireframes and mockups" },
@@ -182,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
View 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>
);
}

View File

@@ -3,44 +3,18 @@
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ProductCardOne from "@/components/sections/product/ProductCardOne"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FooterCard from "@/components/sections/footer/FooterCard";
import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Twitter, Instagram, Linkedin, Briefcase } from "lucide-react";
import { Sparkles, Zap, Star } from "lucide-react";
export default function WorkPage() { export default function WorkPage() {
const navItems = [ const navItems = [
{ name: "Home", id: "home" }, { name: "Home", id: "/" },
{ name: "Services", id: "services" }, { name: "Services", id: "/services" },
{ name: "Work", id: "/work" }, { name: "Work", id: "/work" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]; ];
const footerColumns = [
{
title: "Services", items: [
{ label: "Web Development", href: "/work" },
{ label: "Marketing", href: "/work" },
{ label: "Design", href: "/work" },
{ label: "Software Development", href: "/work" }
]
},
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Work", href: "/work" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Contact Info", items: [
{ label: "Email: info@webdesigntech360.com", href: "mailto:info@webdesigntech360.com" },
{ label: "Phone: +1 (555) 123-4567", href: "tel:+15551234567" },
{ label: "Address: 123 Digital Drive, Innovation City, CA 90210", href: "#" }
]
}
];
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="icon-arrow" defaultButtonVariant="icon-arrow"
@@ -60,61 +34,55 @@ export default function WorkPage() {
brandName="Studio" brandName="Studio"
button={{ text: "Get in Touch", href: "/contact" }} button={{ text: "Get in Touch", href: "/contact" }}
/> />
<div id="portfolio" data-section="portfolio"> <div id="work" data-section="work">
<ProductCardOne <ProductCardTwo
title="Our Award-Winning Portfolio" title="Our Web Design & Development Portfolio"
description="Showcasing a selection of our most impactful web design and development projects." description="Explore our recent projects that showcase our expertise in creating impactful digital experiences across various industries."
tag="Our Work" tag="Our Work"
tagIcon={Sparkles} tagIcon={Briefcase}
textboxLayout="default"
animationType="slide-up"
gridVariant="uniform-all-items-equal"
uniformGridCustomHeightClasses="min-h-[300px] lg:min-h-[400px]"
useInvertedBackground={false}
products={[ products={[
{ {
id: "ecommerce", name: "NextGen E-commerce Platform", price: "View Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/portfolio/portfolio1.webp", imageAlt: "NextGen E-commerce Platform"}, 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: "learning-hub", name: "Interactive Learning Hub", price: "View Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/portfolio/portfolio2.webp", imageAlt: "Interactive Learning Hub"},
{
id: "rebranding-site", name: "Corporate Rebranding Site", price: "View Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/portfolio/portfolio3.webp", imageAlt: "Corporate Rebranding Site"},
{
id: "business-directory", name: "Local Business Directory", price: "View Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/portfolio/portfolio4.webp", imageAlt: "Local Business Directory"},
]}
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="What Our Clients Say"
description="Hear from happy clients who experienced the Tech360 difference."
tag="Client Stories"
tagIcon={Star}
testimonials={[
{
id: "client-a", name: "CEO, Retail Innovations", handle: "", testimonial: "Tech360 transformed our online presence. The new e-commerce platform is visually stunning and incredibly efficient, leading to a significant increase in sales.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero2.webp?_wi=2", imageAlt: "Client A Avatar"
}, },
{ {
id: "client-b", name: "Director of Education, Global Learning Institute", handle: "", testimonial: "The interactive learning hub developed by Tech360 is a masterpiece. Our students are more engaged, and the platform's stability is remarkable.", rating: 5, id: "2", name: "ShopSphere", brand: "Client Project", price: "", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero3.webp?_wi=2", imageAlt: "Client B Avatar" 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: "client-c", name: "Marketing Head, Apex Solutions", handle: "", testimonial: "Our corporate site redesign was seamless. Tech360's design acumen and attention to detail elevated our brand image considerably.", rating: 5, id: "3", name: "Global Connect", brand: "Client Project", price: "", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency/hero/hero4.webp?_wi=2", imageAlt: "Client C Avatar" 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"
} }
]} ]}
showRating={true}
carouselMode="auto"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
/> />
</div> </div>
<FooterSimple <FooterCard
columns={footerColumns} logoText="Studio"
bottomLeftText="© 2024 Web Design Tech360. All rights reserved." copyrightText="© 2025 Studio. All rights reserved."
bottomRightText="Crafted with passion by Tech360" 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> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }