Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 486977cf7d | |||
| 847b4af3c3 | |||
| f3d593ce4e | |||
| 0d0d78b6ab | |||
| 9ad268a8b7 | |||
| 123b3a0129 | |||
| 343a1b0fa8 | |||
| c4a4a62a00 |
181
src/app/about/page.tsx
Normal file
181
src/app/about/page.tsx
Normal file
@@ -0,0 +1,181 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Award, Zap, MessageSquare, Send } from 'lucide-react';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Design Axis"
|
||||
navItems={[
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-hero" data-section="about-hero">
|
||||
<MediaAbout
|
||||
title="Transforming Brands Since 2020"
|
||||
description="Design Axis was founded with a simple mission: to help ambitious brands transform their digital presence and achieve measurable growth."
|
||||
tag="Our Story"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Work With Us", href: "#contact" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/team-diverse-coworkers-modern-office-discuss-their-project-together_93675-134863.jpg?_wi=2"
|
||||
imageAlt="Design Axis Team"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="mission" data-section="mission">
|
||||
<FeatureCardTwentyOne
|
||||
title="Our Mission & Values"
|
||||
description="We believe great design goes beyond aesthetics. It's about creating meaningful experiences that drive real business results."
|
||||
tag="What Drives Us"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Learn More", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1", title: "Strategic Excellence", content: "We don't just design—we strategize. Every decision is backed by research, data, and deep market understanding to ensure maximum impact and ROI."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Creative Innovation", content: "We push boundaries and challenge conventions. Our team stays at the forefront of design trends and technology to deliver cutting-edge solutions."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Transparent Partnership", content: "Communication is key. We keep you informed every step of the way with regular updates, clear metrics, and honest conversations about progress and opportunities."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Measurable Results", content: "Success is defined by your business goals. We establish clear KPIs, track progress meticulously, and continuously optimize to deliver exceptional ROI."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Client Success", content: "Your growth is our growth. We invest deeply in understanding your business, industry, and challenges to become true partners in your success journey."
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-working-desk-top-view_23-2149930937.jpg?_wi=2"
|
||||
imageAlt="Our Values"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
mediaPosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
title="What Our Clients Say"
|
||||
description="Don't just take our word for it—hear from the founders, CMOs, and leaders we've partnered with."
|
||||
tag="Testimonials"
|
||||
tagIcon={MessageSquare}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Design Axis transformed our brand presence completely", quote: "Working with Design Axis was a game-changer for our company. They understood our vision, delivered on time, and the results exceeded our expectations. Our website conversion rate increased by 45% in the first three months.", name: "Michael Rodriguez", role: "Founder & CEO", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Michael Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Professional team that truly understands ROI", quote: "As a CMO, I've worked with many agencies. Design Axis stands out for their data-driven approach and transparent communication. They didn't just design—they strategized our growth trajectory.", name: "Sarah Chen", role: "Chief Marketing Officer", imageSrc: "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg?_wi=2", imageAlt: "Sarah Chen"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Best investment we made for our e-commerce store", quote: "Our e-commerce platform went from 50 to 500 daily orders after Design Axis redesigned our site. The UX improvements and checkout optimization were phenomenal. Highly recommended.", name: "James Park", role: "E-commerce Manager", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-successful-businessman-smiling-holding-tablet-office_176420-918.jpg?_wi=2", imageAlt: "James Park"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Enterprise-grade support with creative excellence", quote: "Scaling with Design Axis has been seamless. Their dedicated project manager, technical expertise, and creative vision align perfectly with our enterprise requirements. They're true partners, not vendors.", name: "Lisa Thompson", role: "VP of Digital Strategy", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=2", imageAlt: "Lisa Thompson"
|
||||
},
|
||||
{
|
||||
id: "5", title: "Transparent pricing and exceptional delivery", quote: "No hidden costs, no scope creep—just honest communication and brilliant execution. Design Axis delivered our entire digital transformation on budget and ahead of schedule.", name: "David Kim", role: "Operations Director", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-using-touchpad-while-relaxing-staircase-looking-camera_637285-10976.jpg?_wi=2", imageAlt: "David Kim"
|
||||
},
|
||||
{
|
||||
id: "6", title: "Strategic partnership that drives real results", quote: "Five years of working with Design Axis has been invaluable. They've become an extension of our team, constantly innovating and pushing us to achieve more. Our market position has never been stronger.", name: "Emma Watson", role: "COO", imageSrc: "http://img.b2bpic.net/free-photo/joyful-businesswoman-holding-tablet_74855-2024.jpg?_wi=2", imageAlt: "Emma Watson"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Ready to Work Together?"
|
||||
tagIcon={Send}
|
||||
tagAnimation="slide-up"
|
||||
title="Let's Start a Conversation"
|
||||
description="Whether you're curious about our process, want to discuss your project, or just want to say hello, we'd love to connect. Reach out and let's explore how we can help your brand grow."
|
||||
buttons={[
|
||||
{ text: "Schedule Free Consultation", href: "#contact" },
|
||||
{ text: "View Our Work", href: "/" },
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/empty-desk-luxurious-loft-apartment-with-modern-minimalist-design_482257-126418.jpg?_wi=2"
|
||||
imageAlt="Design Axis Creative Studio"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Services", href: "/" },
|
||||
{ label: "Portfolio", href: "/" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Brand Strategy", href: "/" },
|
||||
{ label: "Web Design", href: "/" },
|
||||
{ label: "E-commerce", href: "/" },
|
||||
{ label: "Digital Marketing", href: "/" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Schedule Call", href: "#contact" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Design Axis"
|
||||
copyrightText="© 2025 Design Axis. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -2,7 +2,8 @@ import type { Metadata } from "next";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Design Axis - Premium Digital Agency", description: "Partner with a digital agency that turns strategy into measurable results. From concept to launch, we deliver design, development, and growth."};
|
||||
title: "Design Axis - Premium Digital Agency", description: "Partner with a digital agency that turns strategy into measurable results. From concept to launch, we deliver design, development, and growth."
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
|
||||
@@ -32,6 +32,7 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="Design Axis"
|
||||
navItems={[
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
@@ -78,7 +79,7 @@ export default function LandingPage() {
|
||||
description="Founded by industry veterans"
|
||||
subdescription="Design Axis Agency"
|
||||
icon={Lightbulb}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/team-diverse-coworkers-modern-office-discuss-their-project-together_93675-134863.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/team-diverse-coworkers-modern-office-discuss-their-project-together_93675-134863.jpg?_wi=1"
|
||||
imageAlt="Design Axis Creative Team"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -98,17 +99,22 @@ export default function LandingPage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1", title: "Brand Strategy & Identity Design", content: "From logo design to complete brand guidelines, we create cohesive visual identities that resonate with your target audience and establish market authority."},
|
||||
id: "1", title: "Brand Strategy & Identity Design", content: "From logo design to complete brand guidelines, we create cohesive visual identities that resonate with your target audience and establish market authority."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Web Design & Development", content: "Custom websites optimized for conversion, performance, and scalability. We build responsive, fast-loading sites that turn visitors into customers."},
|
||||
id: "2", title: "Web Design & Development", content: "Custom websites optimized for conversion, performance, and scalability. We build responsive, fast-loading sites that turn visitors into customers."
|
||||
},
|
||||
{
|
||||
id: "3", title: "E-commerce Solutions", content: "End-to-end e-commerce platform design and implementation. We integrate payment systems, inventory management, and analytics for seamless online selling."},
|
||||
id: "3", title: "E-commerce Solutions", content: "End-to-end e-commerce platform design and implementation. We integrate payment systems, inventory management, and analytics for seamless online selling."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Digital Marketing & Growth", content: "Data-driven marketing strategies including SEO, paid advertising, and content marketing to drive measurable business growth."},
|
||||
id: "4", title: "Digital Marketing & Growth", content: "Data-driven marketing strategies including SEO, paid advertising, and content marketing to drive measurable business growth."
|
||||
},
|
||||
{
|
||||
id: "5", title: "UX/UI Design & Optimization", content: "User-centered design that improves engagement and reduces friction. We conduct user research, create prototypes, and optimize for conversions."},
|
||||
id: "5", title: "UX/UI Design & Optimization", content: "User-centered design that improves engagement and reduces friction. We conduct user research, create prototypes, and optimize for conversions."
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-working-desk-top-view_23-2149930937.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-working-desk-top-view_23-2149930937.jpg?_wi=1"
|
||||
imageAlt="Design Service Showcase"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -135,7 +141,8 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#" },
|
||||
],
|
||||
features: [
|
||||
"Basic brand guidelines", "5-page website", "Mobile responsive design", "Basic SEO optimization", "Monthly reporting"],
|
||||
"Basic brand guidelines", "5-page website", "Mobile responsive design", "Basic SEO optimization", "Monthly reporting"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "growth", badge: "Growth", badgeIcon: TrendingUp,
|
||||
@@ -144,7 +151,8 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#" },
|
||||
],
|
||||
features: [
|
||||
"Complete brand identity system", "Custom 10-page website", "E-commerce integration ready", "Advanced SEO & analytics", "Monthly strategy sessions"],
|
||||
"Complete brand identity system", "Custom 10-page website", "E-commerce integration ready", "Advanced SEO & analytics", "Monthly strategy sessions"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "professional", badge: "Professional", badgeIcon: Crown,
|
||||
@@ -153,7 +161,8 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#" },
|
||||
],
|
||||
features: [
|
||||
"Premium brand strategy & design", "Full e-commerce platform", "Advanced UX/UI optimization", "Paid advertising management", "Quarterly strategy reviews"],
|
||||
"Premium brand strategy & design", "Full e-commerce platform", "Advanced UX/UI optimization", "Paid advertising management", "Quarterly strategy reviews"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "Enterprise", badgeIcon: Shield,
|
||||
@@ -162,7 +171,8 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#" },
|
||||
],
|
||||
features: [
|
||||
"Dedicated project manager", "Custom development & scalability", "Full-stack digital transformation", "Priority 24/7 support", "Monthly executive reviews"],
|
||||
"Dedicated project manager", "Custom development & scalability", "Full-stack digital transformation", "Priority 24/7 support", "Monthly executive reviews"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "platinum", badge: "Platinum", badgeIcon: Sparkles,
|
||||
@@ -171,7 +181,8 @@ export default function LandingPage() {
|
||||
{ text: "View Details", href: "#" },
|
||||
],
|
||||
features: [
|
||||
"Complete digital ecosystem design", "Integrated SaaS solutions", "Unlimited revisions & support", "Exclusive partnership benefits", "Quarterly board-level reporting"],
|
||||
"Complete digital ecosystem design", "Integrated SaaS solutions", "Unlimited revisions & support", "Exclusive partnership benefits", "Quarterly board-level reporting"
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -194,13 +205,16 @@ export default function LandingPage() {
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "TechFlow Inc", name: "Complete Brand Overhaul & Platform Launch", price: "$45,000 project value", rating: 5,
|
||||
reviewCount: "12 months ROI: 320%", imageSrc: "http://img.b2bpic.net/free-photo/elegant-cozy-office-with-laptop-desk_23-2149636248.jpg", imageAlt: "TechFlow Brand Identity & Website"},
|
||||
reviewCount: "12 months ROI: 320%", imageSrc: "http://img.b2bpic.net/free-photo/elegant-cozy-office-with-laptop-desk_23-2149636248.jpg", imageAlt: "TechFlow Brand Identity & Website"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "LuxeShop Co", name: "E-commerce Platform & Growth Strategy", price: "$38,000 project value", rating: 5,
|
||||
reviewCount: "6 months: $2.1M revenue", imageSrc: "http://img.b2bpic.net/free-psd/e-commerce-furniture-landing-page_197582-336.jpg", imageAlt: "LuxeShop E-commerce Design"},
|
||||
reviewCount: "6 months: $2.1M revenue", imageSrc: "http://img.b2bpic.net/free-psd/e-commerce-furniture-landing-page_197582-336.jpg", imageAlt: "LuxeShop E-commerce Design"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "MobileFirst App", name: "SaaS Platform Design & Launch", price: "$52,000 project value", rating: 5,
|
||||
reviewCount: "1000+ active users", imageSrc: "http://img.b2bpic.net/free-vector/workout-tracker-app_23-2148639062.jpg", imageAlt: "MobileFirst App Interface Design"},
|
||||
reviewCount: "1000+ active users", imageSrc: "http://img.b2bpic.net/free-vector/workout-tracker-app_23-2148639062.jpg", imageAlt: "MobileFirst App Interface Design"
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
@@ -222,17 +236,23 @@ export default function LandingPage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Design Axis transformed our brand presence completely", quote: "Working with Design Axis was a game-changer for our company. They understood our vision, delivered on time, and the results exceeded our expectations. Our website conversion rate increased by 45% in the first three months.", name: "Michael Rodriguez", role: "Founder & CEO", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Michael Rodriguez"},
|
||||
id: "1", title: "Design Axis transformed our brand presence completely", quote: "Working with Design Axis was a game-changer for our company. They understood our vision, delivered on time, and the results exceeded our expectations. Our website conversion rate increased by 45% in the first three months.", name: "Michael Rodriguez", role: "Founder & CEO", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Michael Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Professional team that truly understands ROI", quote: "As a CMO, I've worked with many agencies. Design Axis stands out for their data-driven approach and transparent communication. They didn't just design—they strategized our growth trajectory.", name: "Sarah Chen", role: "Chief Marketing Officer", imageSrc: "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg", imageAlt: "Sarah Chen"},
|
||||
id: "2", title: "Professional team that truly understands ROI", quote: "As a CMO, I've worked with many agencies. Design Axis stands out for their data-driven approach and transparent communication. They didn't just design—they strategized our growth trajectory.", name: "Sarah Chen", role: "Chief Marketing Officer", imageSrc: "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg?_wi=1", imageAlt: "Sarah Chen"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Best investment we made for our e-commerce store", quote: "Our e-commerce platform went from 50 to 500 daily orders after Design Axis redesigned our site. The UX improvements and checkout optimization were phenomenal. Highly recommended.", name: "James Park", role: "E-commerce Manager", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-successful-businessman-smiling-holding-tablet-office_176420-918.jpg", imageAlt: "James Park"},
|
||||
id: "3", title: "Best investment we made for our e-commerce store", quote: "Our e-commerce platform went from 50 to 500 daily orders after Design Axis redesigned our site. The UX improvements and checkout optimization were phenomenal. Highly recommended.", name: "James Park", role: "E-commerce Manager", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-successful-businessman-smiling-holding-tablet-office_176420-918.jpg?_wi=1", imageAlt: "James Park"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Enterprise-grade support with creative excellence", quote: "Scaling with Design Axis has been seamless. Their dedicated project manager, technical expertise, and creative vision align perfectly with our enterprise requirements. They're true partners, not vendors.", name: "Lisa Thompson", role: "VP of Digital Strategy", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", imageAlt: "Lisa Thompson"},
|
||||
id: "4", title: "Enterprise-grade support with creative excellence", quote: "Scaling with Design Axis has been seamless. Their dedicated project manager, technical expertise, and creative vision align perfectly with our enterprise requirements. They're true partners, not vendors.", name: "Lisa Thompson", role: "VP of Digital Strategy", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=1", imageAlt: "Lisa Thompson"
|
||||
},
|
||||
{
|
||||
id: "5", title: "Transparent pricing and exceptional delivery", quote: "No hidden costs, no scope creep—just honest communication and brilliant execution. Design Axis delivered our entire digital transformation on budget and ahead of schedule.", name: "David Kim", role: "Operations Director", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-using-touchpad-while-relaxing-staircase-looking-camera_637285-10976.jpg", imageAlt: "David Kim"},
|
||||
id: "5", title: "Transparent pricing and exceptional delivery", quote: "No hidden costs, no scope creep—just honest communication and brilliant execution. Design Axis delivered our entire digital transformation on budget and ahead of schedule.", name: "David Kim", role: "Operations Director", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-using-touchpad-while-relaxing-staircase-looking-camera_637285-10976.jpg?_wi=1", imageAlt: "David Kim"
|
||||
},
|
||||
{
|
||||
id: "6", title: "Strategic partnership that drives real results", quote: "Five years of working with Design Axis has been invaluable. They've become an extension of our team, constantly innovating and pushing us to achieve more. Our market position has never been stronger.", name: "Emma Watson", role: "COO", imageSrc: "http://img.b2bpic.net/free-photo/joyful-businesswoman-holding-tablet_74855-2024.jpg", imageAlt: "Emma Watson"},
|
||||
id: "6", title: "Strategic partnership that drives real results", quote: "Five years of working with Design Axis has been invaluable. They've become an extension of our team, constantly innovating and pushing us to achieve more. Our market position has never been stronger.", name: "Emma Watson", role: "COO", imageSrc: "http://img.b2bpic.net/free-photo/joyful-businesswoman-holding-tablet_74855-2024.jpg?_wi=1", imageAlt: "Emma Watson"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -252,7 +272,8 @@ export default function LandingPage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
names={["TechFlow", "LuxeShop", "InnovateLab", "GrowthCo", "StartupXYZ", "EnterprisePro", "DigitalFirst"]}
|
||||
logos={[
|
||||
"http://img.b2bpic.net/free-vector/technology-logo-collection_23-2148151111.jpg", "http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148161323.jpg", "http://img.b2bpic.net/free-vector/neon-cyber-monday-special-offers-banner_23-2148339255.jpg", "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg", "http://img.b2bpic.net/free-vector/interior-design-logo-template_742173-3120.jpg", "http://img.b2bpic.net/free-vector/gradient-data-logo-template_23-2149202350.jpg", "http://img.b2bpic.net/free-vector/professional-data-logo-template_23-2149221609.jpg"]}
|
||||
"http://img.b2bpic.net/free-vector/technology-logo-collection_23-2148151111.jpg", "http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148161323.jpg", "http://img.b2bpic.net/free-vector/neon-cyber-monday-special-offers-banner_23-2148339255.jpg", "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg", "http://img.b2bpic.net/free-vector/interior-design-logo-template_742173-3120.jpg", "http://img.b2bpic.net/free-vector/gradient-data-logo-template_23-2149202350.jpg", "http://img.b2bpic.net/free-vector/professional-data-logo-template_23-2149221609.jpg"
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
speed={40}
|
||||
@@ -264,21 +285,29 @@ export default function LandingPage() {
|
||||
<FaqDouble
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What's included in each service package?", content: "Each package is customized to your needs. Our Starter plan includes brand basics, web design, and foundational marketing. Our Professional plan adds e-commerce, advanced analytics, and strategy sessions. Enterprise plans provide dedicated managers, custom development, and 24/7 support. We're transparent about what's included—no hidden costs."},
|
||||
id: "1", title: "What's included in each service package?", content: "Each package is customized to your needs. Our Starter plan includes brand basics, web design, and foundational marketing. Our Professional plan adds e-commerce, advanced analytics, and strategy sessions. Enterprise plans provide dedicated managers, custom development, and 24/7 support. We're transparent about what's included—no hidden costs."
|
||||
},
|
||||
{
|
||||
id: "2", title: "How long does a typical project take?", content: "Project timelines vary based on scope. Most brand overhauls take 6-12 weeks, websites 4-8 weeks, and full platform builds 12-20 weeks. We provide detailed project schedules upfront and communicate progress weekly. Delivery speed is balanced with quality—we never compromise on excellence for speed."},
|
||||
id: "2", title: "How long does a typical project take?", content: "Project timelines vary based on scope. Most brand overhauls take 6-12 weeks, websites 4-8 weeks, and full platform builds 12-20 weeks. We provide detailed project schedules upfront and communicate progress weekly. Delivery speed is balanced with quality—we never compromise on excellence for speed."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Do you offer ongoing support after launch?", content: "Yes. All our packages include ongoing support and monthly strategy sessions. We treat projects as partnerships, not one-off engagements. Your success is our success. We monitor performance, optimize continuously, and help you scale as your business grows."},
|
||||
id: "3", title: "Do you offer ongoing support after launch?", content: "Yes. All our packages include ongoing support and monthly strategy sessions. We treat projects as partnerships, not one-off engagements. Your success is our success. We monitor performance, optimize continuously, and help you scale as your business grows."
|
||||
},
|
||||
{
|
||||
id: "4", title: "How do you measure ROI and results?", content: "We establish clear KPIs at the start of every project—conversion rates, revenue impact, traffic growth, or brand sentiment. Monthly reports show exactly how our work impacts your bottom line. We use industry-standard analytics and provide transparent dashboards so you see results in real-time."},
|
||||
id: "4", title: "How do you measure ROI and results?", content: "We establish clear KPIs at the start of every project—conversion rates, revenue impact, traffic growth, or brand sentiment. Monthly reports show exactly how our work impacts your bottom line. We use industry-standard analytics and provide transparent dashboards so you see results in real-time."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Can you work with our existing team or vendors?", content: "Absolutely. We integrate seamlessly with existing marketing teams, developers, and vendors. Clear communication and documentation are priorities. We can lead the strategy or support your existing team—whatever works best for your organization."},
|
||||
id: "5", title: "Can you work with our existing team or vendors?", content: "Absolutely. We integrate seamlessly with existing marketing teams, developers, and vendors. Clear communication and documentation are priorities. We can lead the strategy or support your existing team—whatever works best for your organization."
|
||||
},
|
||||
{
|
||||
id: "6", title: "What makes Design Axis different from other agencies?", content: "Five years of proven results, transparent pricing, dedicated partnership approach, and a track record of 300%+ average ROI for our clients. We combine creative excellence with data-driven strategy. Most importantly, we invest in understanding your business deeply before proposing solutions."},
|
||||
id: "6", title: "What makes Design Axis different from other agencies?", content: "Five years of proven results, transparent pricing, dedicated partnership approach, and a track record of 300%+ average ROI for our clients. We combine creative excellence with data-driven strategy. Most importantly, we invest in understanding your business deeply before proposing solutions."
|
||||
},
|
||||
{
|
||||
id: "7", title: "How do you handle revisions and feedback?", content: "Revisions are built into every project. We typically include 2-3 rounds of changes before final delivery. We listen carefully to feedback and iterate until you're truly satisfied. Our goal is your complete satisfaction—we're not done until you're thrilled."},
|
||||
id: "7", title: "How do you handle revisions and feedback?", content: "Revisions are built into every project. We typically include 2-3 rounds of changes before final delivery. We listen carefully to feedback and iterate until you're truly satisfied. Our goal is your complete satisfaction—we're not done until you're thrilled."
|
||||
},
|
||||
{
|
||||
id: "8", title: "What if we outgrow our current package?", content: "Scaling is natural and expected. We offer flexible upgrade paths—start with Growth, upgrade to Professional as you expand. Our Platinum package provides white-glove service for truly transformational partnerships. Discuss scaling at any time; we're built to grow with you."},
|
||||
id: "8", title: "What if we outgrow our current package?", content: "Scaling is natural and expected. We offer flexible upgrade paths—start with Growth, upgrade to Professional as you expand. Our Platinum package provides white-glove service for truly transformational partnerships. Discuss scaling at any time; we're built to grow with you."
|
||||
},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Clear answers to help you understand our process, pricing, and approach to delivering exceptional results."
|
||||
@@ -315,12 +344,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/empty-desk-luxurious-loft-apartment-with-modern-minimalist-design_482257-126418.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/empty-desk-luxurious-loft-apartment-with-modern-minimalist-design_482257-126418.jpg?_wi=1"
|
||||
imageAlt="Design Axis Creative Studio"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Services", href: "#services" },
|
||||
{ label: "Portfolio", href: "#portfolio" },
|
||||
{ label: "Careers", href: "#" },
|
||||
|
||||
Reference in New Issue
Block a user