Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9290c2f513 | |||
| 7c6d3af01a | |||
| e267474830 | |||
| 2fb0557f39 | |||
| 83e39913b8 | |||
| 72465aec4f | |||
| 6cf50fe071 |
@@ -1,76 +1,19 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Figtree } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const figtree = Figtree({
|
|
||||||
variable: "--font-figtree",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AceMedia - Web Design Services for SMB Growth",
|
title: "AceMedia - Web Design Studio", description: "Websites That Convert Visitors Into Customers"};
|
||||||
description: "Custom web design services for small-to-midsize businesses. High-converting websites, transparent pricing, proven results. Transform your online presence today.",
|
|
||||||
keywords: "web design, website design services, custom web development, small business websites, web design agency",
|
|
||||||
metadataBase: new URL("https://acemedia.co"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://acemedia.co",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "AceMedia - Web Design Services",
|
|
||||||
description: "Build sleek, high-performing websites tailored to your business. From concept to launch, we handle the complexity.",
|
|
||||||
url: "https://acemedia.co",
|
|
||||||
siteName: "AceMedia",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/a-sleek-modern-website-interface-display-1772640593669-88f1fd10.png",
|
|
||||||
alt: "AceMedia web design showcase",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "AceMedia - Web Design Services",
|
|
||||||
description: "Websites that convert visitors into customers",
|
|
||||||
images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/a-sleek-modern-website-interface-display-1772640593669-88f1fd10.png",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1438,7 +1381,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
|
|||||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||||
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
|
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
|
||||||
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
||||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
|
||||||
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
|
|
||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
@@ -111,11 +109,14 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "01", title: "E-Commerce Transformation", description: "Redesigned product pages and checkout flow, resulting in 35% increase in conversion rate and 28% improvement in average order value.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/a-professional-portfolio-case-study-imag-1772640593679-6329cc41.png", imageAlt: "E-commerce redesign case study"},
|
id: "01", title: "E-Commerce Transformation", description: "Redesigned product pages and checkout flow, resulting in 35% increase in conversion rate and 28% improvement in average order value.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/a-professional-portfolio-case-study-imag-1772640593679-6329cc41.png", imageAlt: "E-commerce redesign case study"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "02", title: "SaaS Platform Launch", description: "Built entire web presence for B2B SaaS startup. Site generated 500+ qualified leads in first 3 months through strategic positioning.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/creative-agency-portfolio-project-showca-1772640606872-f4cd5e43.png", imageAlt: "SaaS platform launch case study"},
|
id: "02", title: "SaaS Platform Launch", description: "Built entire web presence for B2B SaaS startup. Site generated 500+ qualified leads in first 3 months through strategic positioning.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/creative-agency-portfolio-project-showca-1772640606872-f4cd5e43.png", imageAlt: "SaaS platform launch case study"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "03", title: "Digital Agency Rebrand", description: "Complete brand and website overhaul showcasing work portfolio. Resulted in 3x more inbound inquiries and doubled project volume.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/e-commerce-website-redesign-success-stor-1772640608785-311aee43.png", imageAlt: "Digital agency rebrand case study"},
|
id: "03", title: "Digital Agency Rebrand", description: "Complete brand and website overhaul showcasing work portfolio. Resulted in 3x more inbound inquiries and doubled project volume.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/e-commerce-website-redesign-success-stor-1772640608785-311aee43.png", imageAlt: "Digital agency rebrand case study"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -135,19 +136,22 @@ export default function HomePage() {
|
|||||||
id: "starter", badge: "Perfect for Startups", badgeIcon: Sparkles,
|
id: "starter", badge: "Perfect for Startups", badgeIcon: Sparkles,
|
||||||
price: "$2,500", subtitle: "Essential web presence", buttons: [{ text: "Get Started", href: "/contact" }],
|
price: "$2,500", subtitle: "Essential web presence", buttons: [{ text: "Get Started", href: "/contact" }],
|
||||||
features: [
|
features: [
|
||||||
"5-page custom website", "Mobile-responsive design", "Contact form integration", "SEO optimization basics", "1 round of revisions", "Deployment & setup"],
|
"5-page custom website", "Mobile-responsive design", "Contact form integration", "SEO optimization basics", "1 round of revisions", "Deployment & setup"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "professional", badge: "Most Popular", badgeIcon: CheckCircle,
|
id: "professional", badge: "Most Popular", badgeIcon: CheckCircle,
|
||||||
price: "$5,500", subtitle: "High-converting website", buttons: [{ text: "Choose Plan", href: "/contact" }],
|
price: "$5,500", subtitle: "High-converting website", buttons: [{ text: "Choose Plan", href: "/contact" }],
|
||||||
features: [
|
features: [
|
||||||
"10-page custom website", "Advanced SEO strategy", "CMS integration", "Performance optimization", "Analytics setup", "2 rounds of revisions", "6 months support"],
|
"10-page custom website", "Advanced SEO strategy", "CMS integration", "Performance optimization", "Analytics setup", "2 rounds of revisions", "6 months support"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "enterprise", badge: "For Scale", badgeIcon: Shield,
|
id: "enterprise", badge: "For Scale", badgeIcon: Shield,
|
||||||
price: "$12,000+", subtitle: "Full digital transformation", buttons: [{ text: "Let's Talk", href: "/contact" }],
|
price: "$12,000+", subtitle: "Full digital transformation", buttons: [{ text: "Let's Talk", href: "/contact" }],
|
||||||
features: [
|
features: [
|
||||||
"Unlimited pages", "E-commerce integration", "Custom functionality", "Brand strategy included", "Complete marketing setup", "Unlimited revisions", "12 months support"],
|
"Unlimited pages", "E-commerce integration", "Custom functionality", "Brand strategy included", "Complete marketing setup", "Unlimited revisions", "12 months support"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -156,44 +160,6 @@ export default function HomePage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardTwo
|
|
||||||
title="Client Success Stories"
|
|
||||||
description="Hear from business owners who transformed their online presence with AceMedia"
|
|
||||||
tag="Testimonials"
|
|
||||||
tagAnimation="slide-up"
|
|
||||||
testimonials={[
|
|
||||||
{
|
|
||||||
id: "1", name: "Marcus Johnson", role: "Founder, TechFlow Solutions", testimonial:
|
|
||||||
"AceMedia transformed our online presence completely. Our new website generated 3x more leads within the first month. The team was responsive, professional, and truly understood our business goals.", imageSrc:
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/professional-headshot-of-a-confident-mal-1772640592241-bbd411b2.png", imageAlt: "Marcus Johnson"},
|
|
||||||
{
|
|
||||||
id: "2", name: "Sarah Chen", role: "CEO, GrowthCo", testimonial:
|
|
||||||
"Working with AceMedia was a game-changer. They didn't just build a website—they built a conversion machine. Our sales increased by 42% after the redesign. Highly recommend!", imageSrc:
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/professional-headshot-of-a-confident-fem-1772640592646-56ceeab1.png", imageAlt: "Sarah Chen"},
|
|
||||||
{
|
|
||||||
id: "3", name: "David Martinez", role: "Owner, Digital Innovations", testimonial:
|
|
||||||
"Professional, reliable, and results-driven. AceMedia delivered our project on time and exceeded our expectations. They've become our go-to partner for all digital projects.", imageSrc:
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/professional-headshot-of-a-young-male-en-1772640592159-b39a6e59.png", imageAlt: "David Martinez"},
|
|
||||||
{
|
|
||||||
id: "4", name: "Jennifer Williams", role: "Managing Director, Prime Marketing", testimonial:
|
|
||||||
"The level of attention to detail and commitment to our success was outstanding. Our website is now our best marketing asset. AceMedia truly cares about client outcomes.", imageSrc:
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/professional-headshot-of-a-confident-wom-1772640592380-989cca76.png", imageAlt: "Jennifer Williams"},
|
|
||||||
{
|
|
||||||
id: "5", name: "Robert Thompson", role: "VP Operations, CloudSync Inc", testimonial:
|
|
||||||
"AceMedia brought a fresh perspective to our brand. The website they created perfectly captures our value proposition and speaks directly to our target audience.", imageSrc:
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/professional-headshot-of-a-mature-male-b-1772640592480-d12f4c76.png", imageAlt: "Robert Thompson"},
|
|
||||||
{
|
|
||||||
id: "6", name: "Lisa Anderson", role: "Founder, InnovateLab", testimonial:
|
|
||||||
"Exceptional work from start to finish. AceMedia's team is knowledgeable, creative, and truly invested in making the project a success. Our conversion rate improved significantly.", imageSrc:
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/professional-headshot-of-a-young-female--1772640592464-ec168ba1.png", imageAlt: "Lisa Anderson"},
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="social-proof" data-section="social-proof">
|
<div id="social-proof" data-section="social-proof">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="Trusted by Industry Leaders"
|
title="Trusted by Industry Leaders"
|
||||||
@@ -203,7 +169,8 @@ export default function HomePage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"TechFlow Solutions", "GrowthCo", "Digital Innovations", "Prime Marketing", "CloudSync Inc", "InnovateLab", "StartupHub", "Enterprise Ventures"]}
|
"TechFlow Solutions", "GrowthCo", "Digital Innovations", "Prime Marketing", "CloudSync Inc", "InnovateLab", "StartupHub", "Enterprise Ventures"
|
||||||
|
]}
|
||||||
speed={40}
|
speed={40}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
@@ -235,4 +202,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user