Update src/app/services/page.tsx

This commit is contained in:
2026-06-02 19:48:54 +00:00
parent 156558a2f0
commit d518487bce

View File

@@ -6,6 +6,7 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { Code, FileText, TrendingUp, Megaphone } from "lucide-react";
import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() {
@@ -27,33 +28,19 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Portfolio",
id: "/portfolio",
},
name: "Portfolio", id: "/portfolio"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "Pricing",
id: "/pricing",
},
name: "Pricing", id: "/pricing"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoAlt="By Barirah Logo"
brandName="By Barirah"
@@ -67,9 +54,7 @@ export default function LandingPage() {
title="Tailored Digital Solutions for Every Business Need"
buttons={[
{
text: "View Our Portfolio",
href: "/portfolio",
},
text: "View Our Portfolio", href: "/portfolio"},
]}
/>
</div>
@@ -80,32 +65,16 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Website Development",
description: "Custom business websites, WordPress sites, e-commerce stores, portfolio sites, and landing pages.",
imageSrc: "http://img.b2bpic.net/free-vector/web-development-designs_1209-73.jpg",
imageAlt: "Website development icon",
buttonIcon: "Code",
title: "Website Development", description: "Custom business websites, WordPress sites, e-commerce stores, portfolio sites, and landing pages.", imageSrc: "http://img.b2bpic.net/free-vector/web-development-designs_1209-73.jpg", imageAlt: "Website development icon", buttonIcon: Code,
},
{
title: "Blog & Content Services",
description: "SEO blog writing, article writing, website content, product descriptions, and AI content editing.",
imageSrc: "http://img.b2bpic.net/free-photo/laptop-notebook-blue-desk_23-2147982541.jpg",
imageAlt: "Content writing icon",
buttonIcon: "FileText",
title: "Blog & Content Services", description: "SEO blog writing, article writing, website content, product descriptions, and AI content editing.", imageSrc: "http://img.b2bpic.net/free-photo/laptop-notebook-blue-desk_23-2147982541.jpg", imageAlt: "Content writing icon", buttonIcon: FileText,
},
{
title: "SEO Services",
description: "Keyword research, on-page SEO, technical SEO, content strategy, and ongoing optimization.",
imageSrc: "http://img.b2bpic.net/free-photo/online-search-tablet_53876-94844.jpg",
imageAlt: "SEO services icon",
buttonIcon: "TrendingUp",
title: "SEO Services", description: "Keyword research, on-page SEO, technical SEO, content strategy, and ongoing optimization.", imageSrc: "http://img.b2bpic.net/free-photo/online-search-tablet_53876-94844.jpg", imageAlt: "SEO services icon", buttonIcon: TrendingUp,
},
{
title: "Digital Marketing Solutions",
description: "Comprehensive strategies including social media, email marketing, and analytics.",
imageSrc: "http://img.b2bpic.net/free-photo/software-technician-developing-maintaining-databases-work_482257-108271.jpg",
imageAlt: "Digital marketing icon",
buttonIcon: "Megaphone",
title: "Digital Marketing Solutions", description: "Comprehensive strategies including social media, email marketing, and analytics.", imageSrc: "http://img.b2bpic.net/free-photo/software-technician-developing-maintaining-databases-work_482257-108271.jpg", imageAlt: "Digital marketing icon", buttonIcon: Megaphone,
},
]}
title="Strategic Services for Your Digital Success"
@@ -119,20 +88,11 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "sfaq1",
title: "What's your website development process?",
content: "Our process involves discovery, planning, design, development, testing, and launch, with client collaboration at every stage.",
},
id: "sfaq1", title: "What's your website development process?", content: "Our process involves discovery, planning, design, development, testing, and launch, with client collaboration at every stage."},
{
id: "sfaq2",
title: "How do you ensure content quality?",
content: "All content undergoes rigorous research, writing, editing, and SEO optimization to ensure high quality and effectiveness.",
},
id: "sfaq2", title: "How do you ensure content quality?", content: "All content undergoes rigorous research, writing, editing, and SEO optimization to ensure high quality and effectiveness."},
{
id: "sfaq3",
title: "What makes your SEO services effective?",
content: "We combine in-depth keyword analysis, technical expertise, and content strategy to achieve sustainable organic growth.",
},
id: "sfaq3", title: "What makes your SEO services effective?", content: "We combine in-depth keyword analysis, technical expertise, and content strategy to achieve sustainable organic growth."},
]}
sideTitle="Questions About Our Approach?"
sideDescription="Get clear answers on how we deliver exceptional results for our clients across various digital services."
@@ -145,13 +105,9 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="By Barirah"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ReactLenis>