16 Commits

Author SHA1 Message Date
14273fc56e Update theme colors 2026-05-17 11:33:23 +00:00
ac8091021e Update theme colors 2026-05-17 11:32:21 +00:00
39fc8eb96a Update src/app/page.tsx 2026-05-10 20:34:22 +00:00
c5780f88ad Update src/app/page.tsx 2026-05-10 20:33:54 +00:00
b193311856 Update src/app/layout.tsx 2026-05-10 20:33:53 +00:00
2a90c42d34 Update src/app/page.tsx 2026-05-10 20:33:26 +00:00
46130475ff Switch to version 2: modified src/app/styles/base.css 2026-05-10 20:29:24 +00:00
d4c0cdb1b6 Switch to version 2: modified src/app/page.tsx 2026-05-10 20:29:23 +00:00
e47c0d45bf Switch to version 2: modified src/app/layout.tsx 2026-05-10 20:29:23 +00:00
a808631f84 Merge version_3 into main
Merge version_3 into main
2026-05-10 20:27:03 +00:00
61d047de8d Merge version_3 into main
Merge version_3 into main
2026-05-10 20:26:39 +00:00
f807c39e09 Merge version_3 into main
Merge version_3 into main
2026-05-10 20:26:05 +00:00
c08e901835 Merge version_3 into main
Merge version_3 into main
2026-05-10 20:25:31 +00:00
55ceb7a13c Merge version_3 into main
Merge version_3 into main
2026-05-10 20:24:59 +00:00
e6294e05ea Merge version_3 into main
Merge version_3 into main
2026-05-10 20:24:28 +00:00
2dc3911d20 Merge version_3 into main
Merge version_3 into main
2026-05-10 20:23:58 +00:00
4 changed files with 76 additions and 130 deletions

View File

@@ -6,19 +6,20 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
export const metadata: Metadata = { title: 'WebOrgin | Premium Digital Agency & Web Development Services', description: 'WebOrgin delivers high-performance web solutions and digital strategies tailored to scale your business. Elevate your online presence with our expert team.' }; subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
}); });
const inter = Inter({ const inter = Inter({
variable: "--font-inter", subsets: ["latin"], variable: "--font-inter",
subsets: ["latin"],
}); });
export const metadata: Metadata = { title: 'WebOrgin - Digital Agency', description: 'High-performance digital platforms and strategy.' };
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: Readonly<{
@@ -27,7 +28,9 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}> <body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -3,16 +3,14 @@
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; import HeroCentered from "@/components/sections/hero/HeroCentered";
import FeatureBento from "@/components/sections/feature/FeatureBento"; import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
import TeamCardOne from "@/components/sections/team/TeamCardOne";
import FaqDouble from "@/components/sections/faq/FaqDouble"; import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactSplit from "@/components/sections/contact/ContactSplit"; import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterSimple from "@/components/sections/footer/FooterSimple"; import FooterSimple from "@/components/sections/footer/FooterSimple";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import { Sparkles, Search, ArrowUpRight, Award, Users, TrendingUp, MessageCircle } from "lucide-react";
export default function WebAgency2Page() { export default function WebAgency2Page() {
return ( return (
@@ -29,167 +27,112 @@ export default function WebAgency2Page() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div className="fixed bottom-6 right-6 z-50">
<a
href="https://wa.me/917906713091?text=Hey%20WebOrigin%2C%20I%20want%20a%20fresh%20look%20for%20my%20business"
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 bg-green-500 text-white p-4 rounded-full shadow-lg hover:scale-105 transition-transform"
>
<MessageCircle size={24} />
</a>
</div>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="WebOrigin" brandName="WebOrgin"
navItems={[ navItems={[
{ name: "Work", id: "work" }, { name: "Work", id: "work" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
button={{ text: "Get Started", href: "#contact" }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitDoubleCarousel <HeroCentered
title="We Engineer Digital Growth at WebOrigin" title="We Build Digital Experiences at WebOrgin"
description="Go beyond standard web design. We build high-performance, conversion-focused digital ecosystems engineered to deliver measurable revenue growth and market dominance for your business." description="Stop just building websites. We engineer high-performance digital platforms at WebOrgin, designed specifically to accelerate your revenue growth and dominate your market."
tag="Award-Winning Agency"
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "canvas-reveal" }} background={{ variant: "canvas-reveal" }}
buttons={[ avatars={[]}
{ text: "Start Project", href: "#contact" },
{ text: "View Work", href: "#work" },
]}
buttonAnimation="slide-up"
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/glowing-green-checkmark-success-symbol-dark-cosmic-background_84443-91492.jpg?_wi=1", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150104516.jpg?_wi=1", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/tablet-near-nice-decorative-cosmetics_23-2147742653.jpg?_wi=1", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/e-learing-distance-education-icons-interface_53876-124201.jpg?_wi=1", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/leisure-calm-peace-relaxation-resting-serenity_53876-13860.jpg?_wi=1", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/login-box-username-password-inputs-virtual-digital-display_169016-40044.jpg?_wi=1", imageAlt: "UI UX Design" },
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/glowing-green-checkmark-success-symbol-dark-cosmic-background_84443-91492.jpg?_wi=2", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150104516.jpg?_wi=2", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/tablet-near-nice-decorative-cosmetics_23-2147742653.jpg?_wi=2", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/e-learing-distance-education-icons-interface_53876-124201.jpg?_wi=2", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/leisure-calm-peace-relaxation-resting-serenity_53876-13860.jpg?_wi=2", imageAlt: "UI UX Design" },
{ imageSrc: "http://img.b2bpic.net/free-photo/login-box-username-password-inputs-virtual-digital-display_169016-40044.jpg?_wi=2", imageAlt: "UI UX Design" },
]}
/> />
</div> </div>
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureBento <FeatureCardTwentyFour
title="Our WebOrigin Services" title="Our WebOrgin Services"
description="We offer a full suite of digital services to help your brand stand out online." description="We offer a full suite of digital services to help your brand stand out online."
textboxLayout="default" textboxLayout="default"
animationType="blur-reveal"
useInvertedBackground={false} useInvertedBackground={false}
animationType="slide-up"
buttons={[{ text: "All Services", href: "#services" }]}
buttonAnimation="slide-up"
features={[ features={[
{ title: "SEO", description: "WebOrigin optimizes your website to rank higher.", bentoComponent: "marquee", centerIcon: Search, variant: "text", texts: ["Growth", "Visibility", "Performance", "Strategy"] }, { id: "f1", title: "SEO", author: "Team", description: "High-performance rankings", tags: ["Marketing"], imageSrc: "http://img.b2bpic.net/free-photo/glowing-green-checkmark-success-symbol-dark-cosmic-background_84443-91492.jpg" },
{ title: "Web Development", description: "Custom-built, scalable websites.", bentoComponent: "media-stack", items: [{ imageSrc: "http://img.b2bpic.net/free-photo/structured-building-construction-design-plan-concept_53876-132321.jpg?_wi=1", imageAlt: "Web dev 1" }, { imageSrc: "http://img.b2bpic.net/free-photo/structured-building-construction-design-plan-concept_53876-132321.jpg?_wi=2", imageAlt: "Web dev 2" }, { imageSrc: "http://img.b2bpic.net/free-photo/structured-building-construction-design-plan-concept_53876-132321.jpg?_wi=3", imageAlt: "Web dev 3" }] }, { id: "f2", title: "Web Development", author: "Team", description: "Scalable architecture", tags: ["Tech"], imageSrc: "http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150104516.jpg" },
{ title: "Brand Strategy", description: "Build a memorable identity.", bentoComponent: "media-stack", items: [{ imageSrc: "http://img.b2bpic.net/free-photo/female-web-designer-taking-notes-office_23-2149749859.jpg?_wi=1", imageAlt: "Brand 1" }, { imageSrc: "http://img.b2bpic.net/free-photo/female-web-designer-taking-notes-office_23-2149749859.jpg?_wi=2", imageAlt: "Brand 2" }, { imageSrc: "http://img.b2bpic.net/free-photo/female-web-designer-taking-notes-office_23-2149749859.jpg?_wi=3", imageAlt: "Brand 3" }] }, { id: "f3", title: "Brand Strategy", author: "Team", description: "Memorable identity", tags: ["Design"], imageSrc: "http://img.b2bpic.net/free-photo/tablet-near-nice-decorative-cosmetics_23-2147742653.jpg" }
]} ]}
/> />
</div> </div>
<div id="testimonials" data-section="testimonials">
<div id="work" data-section="work"> <TestimonialCardThirteen
<FeatureCardTwentyFive title="Client Success"
title="Projects Crafted by WebOrigin" description="What our clients say about our services."
description="A selection of projects we've crafted for clients across diverse industries." animationType="depth-3d"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Digital Revamp", description: "Modern e-commerce", icon: ArrowUpRight, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150104479.jpg?_wi=1", imageAlt: "Project 1" }, { imageSrc: "http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150104479.jpg?_wi=2", imageAlt: "Project 1" }] },
{ title: "Brand Identity", description: "Corporate identity", icon: ArrowUpRight, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/business-professional-holding-blank-white-business-card_9975-133092.jpg?_wi=1", imageAlt: "Project 2" }, { imageSrc: "http://img.b2bpic.net/free-photo/business-professional-holding-blank-white-business-card_9975-133092.jpg?_wi=2", imageAlt: "Project 2" }] }
]}
/>
</div>
<div id="about" data-section="about">
<TestimonialCardFive
title="What Clients Say"
description="Trust built on excellence."
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
showRating={true}
testimonials={[ testimonials={[
{ { id: "t1", name: "Creative Director", handle: "@leader", testimonial: "WebOrgin completely transformed our online presence.", rating: 5 }
id: "t1", name: "Creative Director", date: "2025", title: "Excellent Service", quote: "WebOrigin completely transformed our online presence. The team delivered a stunning website that exceeded our expectations and significantly impacted our growth.", tag: "5 Stars", avatarSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2580.jpg"
}
]} ]}
/> />
</div> </div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardThree <MetricCardSeven
title="Trusted Results by WebOrigin" title="Trusted Results"
description="We deliver measurable results across all digital domains." description="Key performance indicators we deliver."
animationType="slide-up" animationType="depth-3d"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
metrics={[ metrics={[
{ id: "p1", title: "Projects", value: "150+", icon: Award }, { id: "p1", value: "150+", title: "Projects", items: ["Precision delivery"] },
{ id: "p2", title: "Satisfaction", value: "98%", icon: Users }, { id: "p2", value: "98%", title: "Satisfaction", items: ["Success rate"] },
{ id: "p3", title: "Years", value: "10+", icon: TrendingUp }, { id: "p3", value: "10+", title: "Years", items: ["Experience"] }
]} ]}
/> />
</div> </div>
<div id="about" data-section="about">
<div id="team" data-section="team"> <TeamCardTwo
<TeamCardOne title="The Experts"
title="The WebOrigin Experts" description="Meet the team behind our success."
description="The creative minds and technical wizards behind every project." gridVariant="three-columns-all-equal-width"
animationType="blur-reveal"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
members={[ members={[
{ id: "t1", name: "Alex Rivers", role: "Lead Developer", imageSrc: "http://img.b2bpic.net/free-photo/gamer-streaming-greeting-audience-preparing-showcase-gameplay_482257-103544.jpg" }, { id: "t1", name: "Alex Rivers", role: "Lead Developer", description: "Passionate coder", imageSrc: "http://img.b2bpic.net/free-photo/gamer-streaming-greeting-audience-preparing-showcase-gameplay_482257-103544.jpg" },
{ id: "t2", name: "Elena Vane", role: "Design Lead", imageSrc: "http://img.b2bpic.net/free-photo/smiley-tattoo-artist-indoors-side-view_23-2149445974.jpg" }, { id: "t2", name: "Elena Vane", role: "Design Lead", description: "Visionary creative", imageSrc: "http://img.b2bpic.net/free-photo/smiley-tattoo-artist-indoors-side-view_23-2149445974.jpg" },
{ id: "t3", name: "Marcus Thorne", role: "Brand Strategist", description: "Strategic mastermind", imageSrc: "http://img.b2bpic.net/free-photo/young-fashion-designer-working-her-workshop-alone_23-2148877353.jpg" }
]} ]}
/> />
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqDouble <FaqDouble
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Learn more about partnering with the WebOrigin team." description="Common questions about our agency."
faqsAnimation="slide-up" faqsAnimation="blur-reveal"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ id: "f1", title: "What makes WebOrigin different?", content: "We focus on high-performance architecture combined with creative storytelling that scales businesses." }, { id: "f1", title: "What makes WebOrgin different?", content: "We focus on high-performance architecture." },
{ id: "f2", title: "How do we begin a project?", content: "Contact us through our form." },
{ id: "f3", title: "Do you provide support?", content: "Yes, we offer ongoing maintenance." },
]} ]}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactCenter
title="Let's Build with WebOrigin" title="Let's Build"
description="Ready to elevate your digital footprint? Reach out to our team today." description="Ready to elevate your digital footprint?"
tag="Contact Us" tag="Contact"
background={{ variant: "rotated-rays-animated" }} background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterSimple
bottomLeftText="© 2026 | WebOrigin"
bottomRightText="All rights reserved."
columns={[ columns={[
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] }, { title: "Company", items: [{ label: "About" }, { label: "Work" }] },
{ title: "Legal", items: [{ label: "Privacy" }, { label: "Terms" }] }
]} ]}
bottomLeftText="© 2024 WebOrgin"
bottomRightText="All rights reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-montserrat), sans-serif; font-family: var(--font-inter-tight), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-montserrat), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #0a0a0a; --background: #f7f6f7;
--card: #161616; --card: #ffffff;
--foreground: #f0f0f0; --foreground: #1b0c25;
--primary-cta: #ffffff; --primary-cta: #1b0c25;
--primary-cta-text: #0a0a0a; --primary-cta-text: #f7f6f7;
--secondary-cta: #1e1e1e; --secondary-cta: #ffffff;
--secondary-cta-text: #e0e0e0; --secondary-cta-text: #1b0c25;
--accent: #d0d0d0; --accent: #ff93e4;
--background-accent: #9a9a9a; --background-accent: #e8a8c3;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);