Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d71bcf361e | |||
| 352e198644 | |||
| 5a89f624c6 | |||
| f918d9eef3 | |||
| 6ba51a0e99 | |||
| ffeb266a3b | |||
| 5f7412b9ed | |||
| 0fab1b9985 |
@@ -1,55 +1,18 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } 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 nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Poof Sites - Web Development Agency | 50+ Projects Delivered", description: "Professional web design and development services. We've built 50+ stunning websites for startups and brands in 2 years. Get your custom website today.", keywords: "web development, web design, website builder, responsive design, e-commerce, SaaS, digital agency", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Poof Sites - Web Development Agency", description: "Professional web design and development services. We've built 50+ stunning websites in 2 years.", siteName: "Poof Sites", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/a-modern-website-homepage-with-clean-nav-1772808626140-2f2948c8.png", alt: "Poof Sites - Web Development Agency"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Poof Sites - Web Development Agency", description: "Professional web design and development services.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/a-modern-website-homepage-with-clean-nav-1772808626140-2f2948c8.png"],
|
||||
},
|
||||
};
|
||||
title: "Poof Sites - Web Development Studio", description: "We build websites that convert. Poof Sites specializes in creating stunning, responsive websites that drive business growth."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1380,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Sparkles, Rocket, CheckCircle, Zap, Star, Mail, ThumbsUp, DollarSign } from 'lucide-react';
|
||||
import { Sparkles, Rocket, CheckCircle, Zap, Star, Mail, ThumbsUp, DollarSign, Phone } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -224,7 +224,7 @@ export default function LandingPage() {
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
title="Let's Build Something Amazing Together"
|
||||
description="Whether you're a startup launching your first website or an established business looking to redesign, we're here to help. Get in touch today for a free consultation."
|
||||
description="Whether you're a startup launching your first website or an established business looking to redesign, we're here to help. Get in touch today for a free consultation. You can reach us at poofsite@yahoo.com or call us at 803-848-6793 with any questions or to discuss quotes."
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "mailto:hello@poofsites.com" },
|
||||
{ text: "View Pricing", href: "#pricing" }
|
||||
@@ -258,9 +258,9 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Email", href: "mailto:hello@poofsites.com" },
|
||||
{ label: "Email: poofsite@yahoo.com", href: "mailto:poofsite@yahoo.com" },
|
||||
{ label: "Phone: 803-848-6793", href: "tel:8038486793" },
|
||||
{ label: "Get in Touch", href: "#contact" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user