8 Commits

Author SHA1 Message Date
b848ca66fd Update src/app/features/page.tsx 2026-02-17 01:56:18 +00:00
7246f7d78b Merge version_2 into main
Merge version_2 into main
2026-02-17 01:53:28 +00:00
6a5962ba57 Update src/app/shop/page.tsx 2026-02-17 01:53:24 +00:00
2695aa238d Update src/app/shop/[id]/page.tsx 2026-02-17 01:53:23 +00:00
02b998f9c0 Update src/app/page.tsx 2026-02-17 01:53:22 +00:00
8156b21ffc Add src/app/features/page.tsx 2026-02-17 01:53:21 +00:00
3d616478ed Update src/app/blog/page.tsx 2026-02-17 01:53:21 +00:00
b35f4fc650 Merge version_1 into main
Merge version_1 into main
2026-02-16 00:38:03 +00:00
5 changed files with 99 additions and 2 deletions

View File

@@ -32,7 +32,8 @@ export default function BlogPage() {
{ name: "Companies", id: "companies" },
{ name: "Journey", id: "journey" },
{ name: "Work", id: "work" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "contact" },
{ name: "Features", id: "/features" }
]}
button={{ text: "Let's Connect", href: "contact" }}
brandName="Webild"

90
src/app/features/page.tsx Normal file
View File

@@ -0,0 +1,90 @@
"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function FeaturesPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Companies", id: "companies" },
{ name: "Journey", id: "journey" },
{ name: "Work", id: "work" },
{ name: "Contact", id: "contact" },
{ name: "Features", id: "/features" }
]}
button={{ text: "Let's Connect", href: "contact" }}
brandName="Webild"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="About Our Featured Services"
description="Understanding the depth and value behind each service offering. We've built our reputation on delivering exceptional results through specialized expertise and dedicated support. Each service is crafted to address specific business challenges and drive meaningful growth."
tag="Our Approach"
imageSrc="https://img.b2bpic.net/free-photo/business-people-working-together-office_1359-355.jpg"
imageAlt="Team collaboration and service delivery"
useInvertedBackground={false}
buttons={[
{ text: "Learn More", href: "#" }
]}
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentyThree
title="Featured Services"
description="Discover the core services and capabilities that power our success. Each service is designed to deliver exceptional value and drive measurable results."
features={[
{
id: "1", title: "Web Development", tags: ["Custom Solutions", "Full-Stack"],
imageSrc: "https://img.b2bpic.net/free-vector/program-code-laptop-screen-office-work-software-development-data-statistic_39422-766.jpg", imageAlt: "Web development services"
},
{
id: "2", title: "Digital Strategy", tags: ["Growth-Focused", "Data-Driven"],
imageSrc: "https://img.b2bpic.net/free-photo/business-teamwork-success-concept_1421-16.jpg", imageAlt: "Digital strategy and planning"
},
{
id: "3", title: "Brand Design", tags: ["Visual Identity", "UX/UI"],
imageSrc: "https://img.b2bpic.net/free-photo/excited-by-good-news-motivated-colleagues-celebrating-corporate-success-together_1163-5118.jpg", imageAlt: "Brand design and identity"
},
{
id: "4", title: "Performance Marketing", tags: ["ROI Driven", "Analytics"],
imageSrc: "https://img.b2bpic.net/free-vector/stylish-business-leader-background_1017-20822.jpg", imageAlt: "Performance marketing campaigns"
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="WEBILD"
leftLink={{ text: "Privacy", href: "/privacy" }}
rightLink={{ text: "Terms", href: "/terms" }}
/>
</div>
</ThemeProvider>
);
}

View File

@@ -32,7 +32,8 @@ export default function LandingPage() {
{ name: "Companies", id: "companies" },
{ name: "Journey", id: "journey" },
{ name: "Work", id: "work" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "contact" },
{ name: "Features", id: "/features" }
]}
button={{ text: "Let's Connect", href: "contact" }}
brandName="Webild"

View File

@@ -90,6 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Journey", id: "journey" },
{ name: "Work", id: "work" },
{ name: "Contact", id: "contact" },
{ name: "Features", id: "/features" },
{ name: "Shop", id: "/shop" }
]}
brandName="Webild"
@@ -135,6 +136,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Journey", id: "journey" },
{ name: "Work", id: "work" },
{ name: "Contact", id: "contact" },
{ name: "Features", id: "/features" },
{ name: "Shop", id: "/shop" }
]}
brandName="Webild"
@@ -187,6 +189,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Journey", id: "journey" },
{ name: "Work", id: "work" },
{ name: "Contact", id: "contact" },
{ name: "Features", id: "/features" },
{ name: "Shop", id: "/shop" }
]}
brandName="Webild"

View File

@@ -40,6 +40,7 @@ export default function ShopPage() {
{ name: "Journey", id: "journey" },
{ name: "Work", id: "work" },
{ name: "Contact", id: "contact" },
{ name: "Features", id: "/features" },
{ name: "Shop", id: "/shop" }
]}
brandName="Webild"
@@ -84,6 +85,7 @@ export default function ShopPage() {
{ name: "Journey", id: "journey" },
{ name: "Work", id: "work" },
{ name: "Contact", id: "contact" },
{ name: "Features", id: "/features" },
{ name: "Shop", id: "/shop" }
]}
brandName="Webild"