Update src/app/services/page.tsx

This commit is contained in:
2026-06-04 11:02:16 +00:00
parent 820b1a537f
commit 2525cb63c4

View File

@@ -27,29 +27,17 @@ 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: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Testimonials",
id: "/testimonials",
},
name: "Testimonials", id: "/testimonials"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="http://img.b2bpic.net/free-vector/flat-design-geometric-business-card_23-2149292241.jpg"
logoAlt="TRONIX Solutions Logo"
@@ -66,54 +54,19 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
id: "s1",
title: "Social Media Marketing",
subtitle: "Engage your audience and build your brand's online community.",
category: "Marketing",
value: "Targeted Campaigns",
},
id: "s1", title: "Social Media Marketing", subtitle: "Engage your audience and build your brand's online community.", category: "Marketing", value: "Targeted Campaigns"},
{
id: "s2",
title: "Branding & Identity Design",
subtitle: "Craft a memorable brand identity that resonates with your vision.",
category: "Design",
value: "Unique Visuals",
},
id: "s2", title: "Branding & Identity Design", subtitle: "Craft a memorable brand identity that resonates with your vision.", category: "Design", value: "Unique Visuals"},
{
id: "s3",
title: "Website Development",
subtitle: "Build high-performance, responsive websites that convert visitors into clients.",
category: "Development",
value: "Scalable Platforms",
},
id: "s3", title: "Website Development", subtitle: "Build high-performance, responsive websites that convert visitors into clients.", category: "Development", value: "Scalable Platforms"},
{
id: "s4",
title: "Motion Graphics",
subtitle: "Captivate your audience with dynamic animations and engaging video content.",
category: "Creative",
value: "Dynamic Content",
},
id: "s4", title: "Motion Graphics", subtitle: "Captivate your audience with dynamic animations and engaging video content.", category: "Creative", value: "Dynamic Content"},
{
id: "s5",
title: "Graphic Design",
subtitle: "From stunning visuals to compelling infographics, elevate your brand's aesthetic.",
category: "Design",
value: "Visual Storytelling",
},
id: "s5", title: "Graphic Design", subtitle: "From stunning visuals to compelling infographics, elevate your brand's aesthetic.", category: "Design", value: "Visual Storytelling"},
{
id: "s6",
title: "SEO & Digital Advertising",
subtitle: "Boost your visibility and drive targeted traffic with expert SEO and ad campaigns.",
category: "Marketing",
value: "Maximized Reach",
},
id: "s6", title: "SEO & Digital Advertising", subtitle: "Boost your visibility and drive targeted traffic with expert SEO and ad campaigns.", category: "Marketing", value: "Maximized Reach"},
{
id: "s7",
title: "Business Automation Solutions",
subtitle: "Streamline your operations and enhance efficiency with smart automation tools.",
category: "Operations",
value: "Optimized Workflows",
},
id: "s7", title: "Business Automation Solutions", subtitle: "Streamline your operations and enhance efficiency with smart automation tools.", category: "Operations", value: "Optimized Workflows"},
]}
title="Comprehensive Digital Solutions"
description="Tailored services designed to propel your business forward in the competitive digital landscape."
@@ -127,45 +80,19 @@ export default function LandingPage() {
useInvertedBackground={false}
plans={[
{
id: "basic-plan",
badge: "Starter",
badgeIcon: Lightbulb,
price: "EGP 4,999/mo",
subtitle: "Ideal for startups and small businesses.",
features: [
"Basic Social Media Management",
"Essential SEO Setup",
"Single Page Website",
"Monthly Analytics Report",
],
id: "basic-plan", badge: "Starter", badgeIcon: Lightbulb,
price: "EGP 4,999/mo", subtitle: "Ideal for startups and small businesses.", features: [
"Basic Social Media Management", "Essential SEO Setup", "Single Page Website", "Monthly Analytics Report"],
},
{
id: "pro-plan",
badge: "Professional",
badgeIcon: Zap,
price: "EGP 9,999/mo",
subtitle: "Perfect for growing businesses seeking impact.",
features: [
"Advanced Social Media Strategy",
"Comprehensive SEO Optimization",
"Multi-Page Custom Website",
"Bi-Weekly Performance Review",
"Basic Branding Support",
],
id: "pro-plan", badge: "Professional", badgeIcon: Zap,
price: "EGP 9,999/mo", subtitle: "Perfect for growing businesses seeking impact.", features: [
"Advanced Social Media Strategy", "Comprehensive SEO Optimization", "Multi-Page Custom Website", "Bi-Weekly Performance Review", "Basic Branding Support"],
},
{
id: "enterprise-plan",
badge: "Enterprise",
badgeIcon: Crown,
price: "Custom Quote",
subtitle: "Tailored solutions for large enterprises.",
features: [
"Full-Scale Digital Marketing",
"Advanced Web Development & CRM Integration",
"Complete Brand Overhaul",
"Dedicated Account Manager",
"Business Automation Consulting",
],
id: "enterprise-plan", badge: "Enterprise", badgeIcon: Crown,
price: "Custom Quote", subtitle: "Tailored solutions for large enterprises.", features: [
"Full-Scale Digital Marketing", "Advanced Web Development & CRM Integration", "Complete Brand Overhaul", "Dedicated Account Manager", "Business Automation Consulting"],
},
]}
title="Flexible Pricing for Every Scale"
@@ -179,16 +106,12 @@ export default function LandingPage() {
logoAlt="TRONIX Solutions Logo"
logoText="TRONIX Solutions"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}