Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fcedcf1789 | |||
| b848ca66fd | |||
| 7246f7d78b | |||
| 6a5962ba57 | |||
| 2695aa238d | |||
| 02b998f9c0 | |||
| 8156b21ffc | |||
| 3d616478ed | |||
| b35f4fc650 |
@@ -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
90
src/app/features/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user