Merge version_2 into main #1
107
src/app/about/page.tsx
Normal file
107
src/app/about/page.tsx
Normal file
@@ -0,0 +1,107 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Sparkles, Users, Lightbulb, TrendingUp } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Work", href: "/#work" },
|
||||
{ name: "Services", href: "/#services" },
|
||||
{ name: "About", href: "/about" },
|
||||
{ name: "Contact", href: "/contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
<SplitAbout
|
||||
title="Our Story"
|
||||
description="At Webild, we believe in crafting digital experiences that not only look stunning but also deliver measurable results. Founded in 2018, our journey began with a passion for innovation and a commitment to helping businesses thrive online."
|
||||
tag="Our Mission"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/office.webp"
|
||||
imageAlt="Modern office workspace"
|
||||
imagePosition="right"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Visionary Solutions", description: "We are committed to delivering innovative and future-proof web solutions.", icon: Lightbulb
|
||||
},
|
||||
{
|
||||
title: "Client-Centric Approach", description: "Your success is our priority. We work closely with you every step of the way.", icon: Users
|
||||
},
|
||||
{
|
||||
title: "Sustainable Growth", description: "Building websites that scale and evolve with your business.", icon: TrendingUp
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<TeamCardOne
|
||||
title="Meet the Team"
|
||||
description="The creative minds behind your next project, dedicated to bringing your vision to life."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
mediaClassName="object-[65%_center]"
|
||||
members={[
|
||||
{ id: "1", name: "Sarah Miller", role: "Lead Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" },
|
||||
{ id: "2", name: "Valentina Reyes", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" },
|
||||
{ id: "3", name: "Carlos Mendoza", role: "UX Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" },
|
||||
{ id: "4", name: "Emily White", role: "Marketing Strategist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-4.webp", imageAlt: "Emily White" }
|
||||
]}
|
||||
/>
|
||||
<FooterBase
|
||||
logoText="Webild"
|
||||
copyrightText="© 2026 | Webild"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Services", href: "/#services" },
|
||||
{ label: "Work", href: "/#work" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Web Development", href: "#" },
|
||||
{ label: "SEO", href: "#" },
|
||||
{ label: "Branding", href: "#" },
|
||||
{ label: "UI/UX Design", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
279
src/app/page.tsx
279
src/app/page.tsx
@@ -33,23 +33,23 @@ export default function WebAgency2Page() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Arbete", id: "work" },
|
||||
{ name: "Tjänster", id: "services" },
|
||||
{ name: "Om oss", id: "about" },
|
||||
{ name: "Kontakt", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
button={{ text: "Kom igång", href: "#contact" }}
|
||||
/>
|
||||
<HeroSplitDoubleCarousel
|
||||
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."
|
||||
tag="Award-Winning Agency"
|
||||
title="Vi Skapar Digitala Upplevelser"
|
||||
description="Förvandla ditt varumärke med banbrytande webbdesign och utveckling. Vi skapar enastående webbplatser som omvandlar besökare till kunder."
|
||||
tag="Prisbelönt Byrå"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
buttons={[
|
||||
{ text: "Start Project", href: "#contact" },
|
||||
{ text: "View Work", href: "#work" },
|
||||
{ text: "Starta Projekt", href: "#contact" },
|
||||
{ text: "Visa Arbete", href: "#work" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselPosition="right"
|
||||
@@ -58,254 +58,198 @@ export default function WebAgency2Page() {
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "UI UX Design - SaaS platform" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "UI UX Design - Luminé skincare" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-7.webp", imageAlt: "UI UX Design - Online courses" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "UI UX Design - Business coach" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "UI UX Design - Business coach" }
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "UI UX Design - Luxuria travel" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-5.webp", imageAlt: "UI UX Design - Dental practice" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", imageAlt: "UI UX Design - AI product builder" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp", imageAlt: "UI UX Design - AI automation" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp", imageAlt: "UI UX Design - AI automation" }
|
||||
]}
|
||||
carouselItemClassName="!aspect-[4/5]"
|
||||
/>
|
||||
<FeatureBento
|
||||
title="Our Services"
|
||||
description="We offer a full suite of digital services to help your brand stand out online."
|
||||
title="Våra Tjänster"
|
||||
description="Vi erbjuder en komplett uppsättning digitala tjänster för att hjälpa ditt varumärke att sticka ut online."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttons={[{ text: "All Services", href: "#services" }]}
|
||||
buttons={[{ text: "Alla Tjänster", href: "#services" }]}
|
||||
buttonAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "SEO",
|
||||
description: "We optimize your website to rank higher on search engines and drive organic traffic.",
|
||||
bentoComponent: "marquee",
|
||||
centerIcon: Search,
|
||||
variant: "text",
|
||||
texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"],
|
||||
title: "SEO", description: "Vi optimerar din webbplats för att rankas högre i sökmotorer och driva organisk trafik.", bentoComponent: "marquee", centerIcon: Search,
|
||||
variant: "text", texts: ["Nyckelord", "Bakåtlänkar", "Meta-taggar", "Organisk Trafik", "Rankningar", "Analys", "SERP", "Indexering"]
|
||||
},
|
||||
{
|
||||
title: "Web Development",
|
||||
description: "Custom-built websites that are fast, responsive, and designed to convert.",
|
||||
bentoComponent: "media-stack",
|
||||
items: [
|
||||
title: "Webbutveckling", description: "Skräddarsydda webbplatser som är snabba, responsiva och designade för att konvertera.", bentoComponent: "media-stack", items: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web project - AgentFlow AI platform" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" },
|
||||
],
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Branding",
|
||||
description: "Build a memorable brand identity that resonates with your audience.",
|
||||
bentoComponent: "media-stack",
|
||||
items: [
|
||||
title: "Varumärkesbyggnad", description: "Bygg en minnesvärd varumärkesidentitet som resonerar med din målgrupp.", bentoComponent: "media-stack", items: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand project 1" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Brand project 2" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" },
|
||||
],
|
||||
},
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<FeatureCardTwentySix
|
||||
title="Our Work"
|
||||
description="A selection of projects we've crafted for clients across industries."
|
||||
title="Vårt Arbete"
|
||||
description="Ett urval av projekt vi har skapat för kunder inom olika branscher."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View All Work", href: "#work" }]}
|
||||
buttons={[{ text: "Visa Allt Arbete", href: "#work" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Umbra Skincare",
|
||||
description: "Luxury fragrance e-commerce",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp",
|
||||
imageAlt: "Umbra Skincare website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
title: "Umbra Skincare", description: "E-handel för lyxdofter", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Luxuria Travel",
|
||||
description: "Bespoke luxury travel experiences",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp",
|
||||
imageAlt: "Luxuria Travel website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
title: "Luxuria Travel", description: "Skräddarsydda lyxresupplevelser", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Dental Care",
|
||||
description: "Premier dental practice",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp",
|
||||
imageAlt: "Luxury Dental Care website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
title: "Tandvård", description: "Ledande tandläkarpraktik", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Luxury Dental Care website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Summit Roofing",
|
||||
description: "Professional roofing services",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp",
|
||||
imageAlt: "Summit Roofing website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
title: "Summit Takläggning", description: "Professionella takläggningstjänster", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Dubai Real Estate",
|
||||
description: "Luxury property listings",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp",
|
||||
imageAlt: "Dubai Real Estate website",
|
||||
buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#",
|
||||
},
|
||||
title: "Dubai Fastigheter", description: "Lyxiga fastighetsannonser", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<FeatureBento
|
||||
title="Our Promise"
|
||||
description="We deliver results that speak for themselves."
|
||||
title="Vårt Löfte"
|
||||
description="Vi levererar resultat som talar för sig själva."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "All Devices Optimization",
|
||||
description: "Pixel-perfect websites that look stunning on every screen size and device.",
|
||||
bentoComponent: "phone",
|
||||
statusIcon: Lock,
|
||||
title: "Optimering för Alla Enheter", description: "Pixelperfekta webbplatser som ser fantastiska ut på varje skärmstorlek och enhet.", bentoComponent: "phone", statusIcon: Lock,
|
||||
alertIcon: Monitor,
|
||||
alertTitle: "Responsive check",
|
||||
alertMessage: "All breakpoints passed",
|
||||
apps: [
|
||||
{ name: "Phone", icon: Phone },
|
||||
alertTitle: "Responsiv kontroll", alertMessage: "Alla brytpunkter godkända", apps: [
|
||||
{ name: "Telefon", icon: Phone },
|
||||
{ name: "SMS", icon: MessageCircle },
|
||||
{ name: "Books", icon: BookOpen },
|
||||
{ name: "Böcker", icon: BookOpen },
|
||||
{ name: "TV", icon: Tv },
|
||||
{ name: "Camera", icon: Camera },
|
||||
{ name: "Music", icon: Music },
|
||||
{ name: "Settings", icon: Settings },
|
||||
{ name: "Chat", icon: MessageCircle },
|
||||
{ name: "Kamera", icon: Camera },
|
||||
{ name: "Musik", icon: Music },
|
||||
{ name: "Inställningar", icon: Settings },
|
||||
{ name: "Chatt", icon: MessageCircle }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Säker Hosting", description: "Säkerhet i företagsklass och 99.9% drifttid för din webbplats.", bentoComponent: "reveal-icon", icon: Shield
|
||||
},
|
||||
{
|
||||
title: "Snabb Leverans", description: "Från idé till lansering på rekordtid utan att kompromissa med kvaliteten.", bentoComponent: "timeline", heading: "Projektlansering", subheading: "Vecka 1", items: [
|
||||
{ label: "Upptäckt & wireframes", detail: "Dag 1-3" },
|
||||
{ label: "Design & utveckling", detail: "Dag 4-10" },
|
||||
{ label: "Testning & driftsättning", detail: "Dag 11-14" }
|
||||
],
|
||||
completedLabel: "Live"
|
||||
},
|
||||
{
|
||||
title: "Secure Hosting",
|
||||
description: "Enterprise-grade security and 99.9% uptime for your website.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Shield,
|
||||
},
|
||||
{
|
||||
title: "Fast Turnaround",
|
||||
description: "From concept to launch in record time without sacrificing quality.",
|
||||
bentoComponent: "timeline",
|
||||
heading: "Project Launch",
|
||||
subheading: "Week 1",
|
||||
items: [
|
||||
{ label: "Discovery & wireframes", detail: "Day 1-3" },
|
||||
{ label: "Design & development", detail: "Day 4-10" },
|
||||
{ label: "Testing & deployment", detail: "Day 11-14" },
|
||||
],
|
||||
completedLabel: "Live",
|
||||
},
|
||||
{
|
||||
title: "Seamless Integrations",
|
||||
description: "Connect with the tools you already use — CRMs, analytics, payments, and more.",
|
||||
bentoComponent: "orbiting-icons",
|
||||
centerIcon: Puzzle,
|
||||
title: "Sömlösa Integrationer", description: "Anslut med de verktyg du redan använder — CRM, analys, betalningar och mer.", bentoComponent: "orbiting-icons", centerIcon: Puzzle,
|
||||
items: [
|
||||
{ icon: Shield },
|
||||
{ icon: Monitor },
|
||||
{ icon: Zap },
|
||||
{ icon: TrendingUp },
|
||||
],
|
||||
{ icon: TrendingUp }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Growth Trends",
|
||||
description: "Data-driven insights to optimize your search presence and drive traffic.",
|
||||
bentoComponent: "line-chart",
|
||||
},
|
||||
title: "Tillväxttrender", description: "Datadrivna insikter för att optimera din sökordsnärvaro och driva trafik.", bentoComponent: "line-chart"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<TestimonialCardFifteen
|
||||
testimonial="Webild completely transformed our online presence. The team delivered a stunning website that exceeded our expectations and doubled our conversion rate."
|
||||
testimonial="Webild förvandlade helt vår online-närvaro. Teamet levererade en fantastisk webbplats som överträffade våra förväntningar och fördubblade vår konverteringsgrad."
|
||||
rating={5}
|
||||
author="— Maria Santos, CEO at Luxuria Travel"
|
||||
author="— Maria Santos, VD på Luxuria Travel"
|
||||
avatars={[
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Client" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Client" }
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<MetricCardOne
|
||||
title="Trusted by Industry Leaders"
|
||||
description="Years of experience building digital products that drive real results."
|
||||
title="Betrodd av Branschledare"
|
||||
description="År av erfarenhet av att bygga digitala produkter som ger verkliga resultat."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "projects", value: "100+", title: "Projects", description: "Successfully delivered across all industries", icon: Award },
|
||||
{ id: "satisfaction", value: "99%", title: "Satisfaction", description: "Client satisfaction rate and counting", icon: Users },
|
||||
{ id: "years", value: "8+", title: "Years", description: "Of crafting exceptional digital experiences", icon: TrendingUp },
|
||||
{ id: "projects", value: "100+", title: "Projekt", description: "Framgångsrikt levererade inom alla branscher", icon: Award },
|
||||
{ id: "satisfaction", value: "99%", title: "Nöjdhet", description: "Kundnöjdhet och räknas", icon: Users },
|
||||
{ id: "years", value: "8+", title: "År", description: "Av att skapa exceptionella digitala upplevelser", icon: TrendingUp }
|
||||
]}
|
||||
/>
|
||||
<FeatureCardSixteen
|
||||
title="Why Choose Webild"
|
||||
description="See the difference a professional web agency makes."
|
||||
title="Varför Välja Webild"
|
||||
description="Se skillnaden en professionell webbyrå gör."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Generic templates with no personality",
|
||||
"Slow load times and poor performance",
|
||||
"No SEO strategy or search visibility",
|
||||
"Outdated design that hurts credibility",
|
||||
"No ongoing support after launch",
|
||||
],
|
||||
"Generiska mallar utan personlighet", "Långsamma laddningstider och dålig prestanda", "Ingen SEO-strategi eller sökbarhet", "Föråldrad design som skadar trovärdigheten", "Inget löpande stöd efter lansering"
|
||||
]
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Custom designs tailored to your brand",
|
||||
"Lightning-fast performance on all devices",
|
||||
"Built-in SEO to drive organic traffic",
|
||||
"Modern design that builds trust",
|
||||
"Dedicated support and maintenance",
|
||||
],
|
||||
"Anpassade designer skräddarsydda för ditt varumärke", "Blixtsnabb prestanda på alla enheter", "Inbyggd SEO för att driva organisk trafik", "Modern design som bygger förtroende", "Dedikerat stöd och underhåll"
|
||||
]
|
||||
}}
|
||||
/>
|
||||
<TeamCardFive
|
||||
title="Meet the Team"
|
||||
description="The creative minds behind your next project."
|
||||
title="Möt Teamet"
|
||||
description="De kreativa sinnena bakom ditt nästa projekt."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
mediaClassName="object-[65%_center]"
|
||||
team={[
|
||||
{ id: "1", name: "Sarah Miller", role: "Lead Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" },
|
||||
{ id: "2", name: "Valentina Reyes", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" },
|
||||
{ id: "3", name: "Carlos Mendoza", role: "UX Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" },
|
||||
{ id: "1", name: "Sarah Miller", role: "Ledande Utvecklare", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" },
|
||||
{ id: "2", name: "Valentina Reyes", role: "Kreativ Chef", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" },
|
||||
{ id: "3", name: "Carlos Mendoza", role: "UX-designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" }
|
||||
]}
|
||||
/>
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about working with us."
|
||||
title="Vanliga Frågor"
|
||||
description="Allt du behöver veta om att arbeta med oss."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "1", title: "How long does a typical project take?", content: "Most projects are completed within 2-4 weeks depending on scope and complexity. We'll provide a detailed timeline during our initial consultation." },
|
||||
{ id: "2", title: "What is your pricing structure?", content: "We offer project-based pricing tailored to your needs. Every project includes design, development, SEO optimization, and post-launch support." },
|
||||
{ id: "3", title: "Do you offer ongoing maintenance?", content: "Yes! We provide ongoing support and maintenance packages to keep your website updated, secure, and performing at its best." },
|
||||
{ id: "4", title: "Can you redesign my existing website?", content: "Absolutely. We specialize in website redesigns that modernize your brand while preserving your existing content and SEO rankings." },
|
||||
{ id: "5", title: "What technologies do you use?", content: "We build with modern technologies including Next.js, React, and Tailwind CSS to ensure fast, scalable, and maintainable websites." },
|
||||
{ id: "1", title: "Hur lång tid tar ett typiskt projekt?", content: "De flesta projekt slutförs inom 2-4 veckor beroende på omfattning och komplexitet. Vi kommer att tillhandahålla en detaljerad tidslinje under vår första konsultation." },
|
||||
{ id: "2", title: "Vad är er prisstruktur?", content: "Vi erbjuder projektbaserad prissättning anpassad efter dina behov. Varje projekt inkluderar design, utveckling, SEO-optimering och support efter lansering." },
|
||||
{ id: "3", title: "Erbjuder ni löpande underhåll?", content: "Ja! Vi erbjuder löpande support- och underhållspaket för att hålla din webbplats uppdaterad, säker och presterande på topp." },
|
||||
{ id: "4", title: "Kan ni designa om min befintliga webbplats?", content: "Absolut. Vi specialiserar oss på webbplatsomdesign som moderniserar ditt varumärke samtidigt som vi bevarar ditt befintliga innehåll och dina SEO-rankningar." },
|
||||
{ id: "5", title: "Vilka tekniker använder ni?", content: "Vi bygger med moderna tekniker inklusive Next.js, React och Tailwind CSS för att säkerställa snabba, skalbara och underhållsbara webbplatser." }
|
||||
]}
|
||||
/>
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
title="Ready to Transform Your Digital Presence?"
|
||||
description="Let's build something extraordinary together. Get in touch and let's discuss your next project."
|
||||
tag="Kontakta Oss"
|
||||
title="Redo att Förvandla Din Digitala Närvaro?"
|
||||
description="Låt oss bygga något extraordinärt tillsammans. Kontakta oss så diskuterar vi ditt nästa projekt."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[
|
||||
{ text: "Start Your Project", href: "#contact" },
|
||||
{ text: "View Our Work", href: "#work" },
|
||||
{ text: "Starta Ditt Projekt", href: "#contact" },
|
||||
{ text: "Visa Vårt Arbete", href: "#work" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -315,32 +259,29 @@ export default function WebAgency2Page() {
|
||||
copyrightText="© 2026 | Webild"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Work", href: "#work" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
title: "Företag", items: [
|
||||
{ label: "Om", href: "#about" },
|
||||
{ label: "Tjänster", href: "#services" },
|
||||
{ label: "Arbete", href: "#work" },
|
||||
{ label: "Kontakt", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Web Development", href: "#" },
|
||||
title: "Tjänster", items: [
|
||||
{ label: "Webbutveckling", href: "#" },
|
||||
{ label: "SEO", href: "#" },
|
||||
{ label: "Branding", href: "#" },
|
||||
{ label: "UI/UX Design", href: "#" },
|
||||
],
|
||||
{ label: "Varumärkesbyggnad", href: "#" },
|
||||
{ label: "UI/UX Design", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Anslut", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" },
|
||||
],
|
||||
},
|
||||
{ label: "Dribbble", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
|
||||
125
src/app/services/page.tsx
Normal file
125
src/app/services/page.tsx
Normal file
@@ -0,0 +1,125 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { Monitor, Code, Megaphone, Smartphone, Globe, Sparkles } from 'lucide-react';
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "Services", href: "/services" },
|
||||
{ name: "Work", href: "/work" },
|
||||
{ name: "About", href: "#about" },
|
||||
{ name: "Contact", href: "#contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
<FeatureCardTwentyFive
|
||||
title="Our Comprehensive Web Services"
|
||||
description="We provide a full spectrum of digital solutions to elevate your brand and drive results."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Web Design", description: "Crafting visually stunning and user-friendly interfaces that captivate your audience.", icon: Monitor,
|
||||
mediaItems: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "Web design service" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "UI/UX design service" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Web Development", description: "Building robust, scalable, and high-performance websites tailored to your specific needs.", icon: Code,
|
||||
mediaItems: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web development coding" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web development project" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "SEO & Digital Marketing", description: "Boosting your online visibility and driving organic traffic with proven SEO strategies.", icon: Megaphone,
|
||||
mediaItems: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/marketing-1.webp", imageAlt: "SEO strategy" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/marketing-2.webp", imageAlt: "Digital marketing data" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "UI/UX Strategy", description: "Designing intuitive user experiences that engage visitors and convert them into customers.", icon: Smartphone,
|
||||
mediaItems: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "UX research" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-7.webp", imageAlt: "Mobile UX design" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "E-commerce Solutions", description: "Creating powerful online stores that maximize sales and provide a seamless shopping experience.", icon: Globe,
|
||||
mediaItems: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/ecom-1.webp", imageAlt: "E-commerce website" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/ecom-2.webp", imageAlt: "Online store interface" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Branding & Identity", description: "Developing a strong brand identity that resonates with your target audience.", icon: Sparkles,
|
||||
mediaItems: [
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand identity design" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Logo design concept" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<ContactText
|
||||
tag="Ready to Start?"
|
||||
text="Let's discuss your project and bring your vision to life. Contact us today!"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Get a Free Quote", href: "#contact" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterLogoEmphasis
|
||||
logoText="Webild"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Work", href: "/work" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "FAQ", href: "#faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
109
src/app/work/page.tsx
Normal file
109
src/app/work/page.tsx
Normal file
@@ -0,0 +1,109 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { ArrowUpRight } from 'lucide-react';
|
||||
|
||||
export default function WorkPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "Services", href: "/services" },
|
||||
{ name: "Work", href: "/work" },
|
||||
{ name: "About", href: "#about" },
|
||||
{ name: "Contact", href: "#contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
<FeatureCardTwentySix
|
||||
title="Our Featured Projects"
|
||||
description="Explore a selection of our award-winning web design and development projects."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Contact Us", href: "#contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Umbra Skincare", description: "Luxury fragrance e-commerce website with integrated analytics.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Luxuria Travel", description: "Bespoke luxury travel experiences platform with custom booking system.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Dental Care", description: "Modern website for a premier dental practice, focusing on patient engagement.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Luxury Dental Care website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Summit Roofing", description: "Lead-generating website for professional roofing services, optimized for local SEO.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "Dubai Real Estate", description: "High-end property listing portal for luxury real estate in Dubai.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
},
|
||||
{
|
||||
title: "AgentFlow AI", description: "AI-powered platform for automated business workflows and data analysis.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "AgentFlow AI platform", buttonIcon: ArrowUpRight,
|
||||
buttonHref: "#"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<ContactText
|
||||
tag="Ready to Collaborate?"
|
||||
text="Have an exciting project in mind? Let's build something remarkable together!"
|
||||
background={{ variant: "downward-rays-static" }}
|
||||
buttons={[
|
||||
{ text: "Start Your Project", href: "#contact" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterLogoEmphasis
|
||||
logoText="Webild"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Work", href: "/work" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "FAQ", href: "#faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user