3 Commits

Author SHA1 Message Date
e5fa8d358d Update src/app/page.tsx 2026-03-05 09:06:40 +00:00
027d0df093 Update src/app/layout.tsx 2026-03-05 09:06:40 +00:00
169efd6f10 Merge version_1 into main
Merge version_1 into main
2026-03-05 08:07:22 +00:00
2 changed files with 11 additions and 52 deletions

View File

@@ -1,57 +1,17 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
import "@/styles/globals.css";
export const metadata: Metadata = {
title: "Design Axis - Premium Digital Agency | Brand & Web Design Services", description: "Transform your brand with Design Axis. 5 years of proven excellence in branding, web design, development, and digital growth. Serving mid-market to enterprise clients.", keywords: "digital agency, brand design, web design, web development, e-commerce, digital marketing, branding agency, UX design", metadataBase: new URL("https://designaxis.com"),
alternates: {
canonical: "https://designaxis.com"},
openGraph: {
title: "Design Axis - Premium Digital Agency", description: "We build brands that win. Transform your digital presence with proven strategy and design excellence.", url: "https://designaxis.com", siteName: "Design Axis", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/group-business-executives-interacting-with-each-other_1170-760.jpg", alt: "Design Axis - Premium Digital Agency"},
],
},
twitter: {
card: "summary_large_image", title: "Design Axis - Premium Digital Agency", description: "We build brands that win. Strategic design, development, and growth solutions.", images: ["http://img.b2bpic.net/free-photo/group-business-executives-interacting-with-each-other_1170-760.jpg"],
},
robots: {
index: true,
follow: true,
},
};
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,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -130,7 +130,7 @@ export default function LandingPage() {
plans={[
{
id: "starter", badge: "Starter", badgeIcon: Zap,
price: "$2,500/mo", subtitle: "Perfect for new brands launching online", buttons: [
price: "$2,500/mo", subtitle: "Perfect for new brands launching online. Money-back guarantee if ROI targets aren't met.", buttons: [
{ text: "Choose Plan", href: "contact" },
{ text: "Learn More", href: "#" },
],
@@ -139,7 +139,7 @@ export default function LandingPage() {
},
{
id: "growth", badge: "Growth", badgeIcon: TrendingUp,
price: "$5,000/mo", subtitle: "For growing businesses needing expansion", buttons: [
price: "$5,000/mo", subtitle: "For growing businesses needing expansion. Money-back guarantee if ROI targets aren't met.", buttons: [
{ text: "Choose Plan", href: "contact" },
{ text: "Learn More", href: "#" },
],
@@ -148,7 +148,7 @@ export default function LandingPage() {
},
{
id: "professional", badge: "Professional", badgeIcon: Crown,
price: "$8,500/mo", subtitle: "Our most popular choice for mid-market", buttons: [
price: "$8,500/mo", subtitle: "Our most popular choice for mid-market. Money-back guarantee if ROI targets aren't met.", buttons: [
{ text: "Choose Plan", href: "contact" },
{ text: "Learn More", href: "#" },
],
@@ -157,7 +157,7 @@ export default function LandingPage() {
},
{
id: "enterprise", badge: "Enterprise", badgeIcon: Shield,
price: "$15,000/mo", subtitle: "For enterprise clients requiring dedicated support", buttons: [
price: "$15,000/mo", subtitle: "For enterprise clients requiring dedicated support. Money-back guarantee if ROI targets aren't met.", buttons: [
{ text: "Choose Plan", href: "contact" },
{ text: "Learn More", href: "#" },
],
@@ -166,7 +166,7 @@ export default function LandingPage() {
},
{
id: "platinum", badge: "Platinum", badgeIcon: Sparkles,
price: "Custom", subtitle: "White-glove service for transformational partners", buttons: [
price: "Custom", subtitle: "White-glove service for transformational partners. Money-back guarantee if ROI targets aren't met.", buttons: [
{ text: "Schedule Call", href: "contact" },
{ text: "View Details", href: "#" },
],