diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c14b17d..9dc7a67 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,51 +1,22 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Source_Sans_3 } from "next/font/google";
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 sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "ArayaDigital | Web Design for Local Businesses", description: "Fast, beautiful, conversion-focused websites for restaurants, salons, contractors & retail shops. Transparent pricing. 2-4 week turnaround. Get a free quote.", keywords: "web design agency, local business website, restaurant website, salon website, contractor website, custom web design, small business web design, conversion-focused website", openGraph: {
- title: "ArayaDigital | Web Design for Local Businesses", description: "Transform your local business with a world-class website built for conversions.", url: undefined,
- siteName: "ArayaDigital", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-vector/gradient-responsive-website-design_23-2149483543.jpg", alt: "ArayaDigital web design showcase"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "ArayaDigital | Web Design for Local Businesses", description: "Transform your local business with a world-class website built for conversions.", images: ["http://img.b2bpic.net/free-vector/gradient-responsive-website-design_23-2149483543.jpg"],
- },
-};
+ title: "ArayaDigital - Web Design for Local Businesses", description: "Beautiful, fast-loading websites designed to convert customers. We specialize in web design for restaurants, salons, contractors, and retail shops."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 68ad0c9..a6866f1 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,7 +10,7 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
-import { Crown, Sparkles, Star, Zap } from "lucide-react";
+import { Sparkles, Star, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -31,11 +31,10 @@ export default function LandingPage() {
brandName="ArayaDigital"
navItems={[
{ name: "Why Us", id: "features" },
- { name: "Portfolio", id: "product" },
{ name: "Pricing", id: "pricing" },
{ name: "FAQ", id: "faq" }
]}
- button={{ text: "Get a Free Quote", href: "contact" }}
+ button={{ text: "Get Started", href: "contact" }}
animateOnLoad={true}
/>
@@ -47,8 +46,8 @@ export default function LandingPage() {
tag="Web Design Agency"
tagAnimation="slide-up"
buttons={[
- { text: "See Our Work", href: "product" },
- { text: "Get a Free Quote", href: "contact" }
+ { text: "View Design Examples", href: "#features" },
+ { text: "Let's Talk", href: "contact" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
@@ -71,7 +70,7 @@ export default function LandingPage() {
features={[
{
id: 1,
- title: "Fast Turnaround", description: "Most projects completed within 2-4 weeks. We understand your business can't wait for months of development.", imageSrc: "http://img.b2bpic.net/free-psd/restaurant-landing-page-template-design_23-2149609569.jpg?_wi=1", imageAlt: "Fast delivery representation"
+ title: "72-Hour Turnaround", description: "Most projects completed within 72 hours. We understand your business can't wait for months of development.", imageSrc: "http://img.b2bpic.net/free-psd/restaurant-landing-page-template-design_23-2149609569.jpg?_wi=1", imageAlt: "Fast delivery representation"
},
{
id: 2,
@@ -79,7 +78,7 @@ export default function LandingPage() {
},
{
id: 3,
- title: "Transparent Pricing", description: "No hidden fees or surprise costs. Know exactly what you're paying for and what results to expect.", imageSrc: "http://img.b2bpic.net/free-vector/minimal-architecture-project-landing-page_23-2149447724.jpg?_wi=1", imageAlt: "Clear pricing structure"
+ title: "Branding & Design Excellence", description: "We focus on creating stunning visual identities and design examples that showcase your brand's unique personality and strengths.", imageSrc: "http://img.b2bpic.net/free-vector/minimal-architecture-project-landing-page_23-2149447724.jpg?_wi=1", imageAlt: "Design showcase"
},
{
id: 4,
@@ -94,22 +93,22 @@ export default function LandingPage() {