Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b7f614dd2 | |||
| a6aedd9980 | |||
| 23021d05e9 | |||
| 6bd0a6e023 | |||
| fe29ed0f10 | |||
| 3ff7cbd154 | |||
| a6142fb748 |
@@ -1,25 +1,55 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import { Halant } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./styles/variables.css";
|
import { Nunito } from "next/font/google";
|
||||||
import "./styles/base.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({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const nunito = Nunito({
|
||||||
|
variable: "--font-nunito", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Poof Sites - Web Development Studio", description: "Professional web development services that convert. We build stunning, responsive websites for startups and established brands."};
|
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"],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={inter.variable}>
|
<ServiceWrapper>
|
||||||
{children}
|
<body
|
||||||
|
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1387,6 +1417,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
|||||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||||
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';
|
||||||
import { Sparkles, Rocket, CheckCircle, Zap, Star, Mail, ThumbsUp, DollarSign, Phone } from 'lucide-react';
|
import { Sparkles, Rocket, CheckCircle, Zap, Star, Mail, ThumbsUp, DollarSign } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -38,14 +38,14 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
brandName="Poof Sites"
|
brandName="Poof Sites"
|
||||||
bottomLeftText="Web Development Studio"
|
bottomLeftText="Web Development Studio"
|
||||||
bottomRightText="poofsite@yahoo.com | 803-848-6793"
|
bottomRightText="hello@poofsites.com"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitDoubleCarousel
|
<HeroSplitDoubleCarousel
|
||||||
title="We Build Websites That Convert"
|
title="We Build Websites That Convert"
|
||||||
description="Poof Sites specializes in creating stunning, responsive websites that drive business growth. Over 2 years, we've helped clients across industries establish powerful online presences. Contact us at poofsite@yahoo.com or call 803-848-6793 for questions and quotes."
|
description="Poof Sites specializes in creating stunning, responsive websites that drive business growth. Over 2 years, we've helped clients across industries establish powerful online presences."
|
||||||
tag="Web Development Studio"
|
tag="Web Development Studio"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -78,7 +78,7 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="Two Years of Building Excellence"
|
title="Two Years of Building Excellence"
|
||||||
description="Poof Sites was founded on the belief that every business deserves a website that works as hard as they do."
|
description="Poof Sites was founded on the belief that every business deserves a website that works as hard as they do."
|
||||||
subdescription="Since 2023, we've delivered 50+ projects for startups and established brands. Have questions? Email us at poofsite@yahoo.com or call 803-848-6793."
|
subdescription="Since 2023, we've delivered 50+ projects for startups and established brands"
|
||||||
icon={CheckCircle}
|
icon={CheckCircle}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/a-screenshot-of-a-completed-website-for--1772808625106-91872e5a.png?_wi=2"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/a-screenshot-of-a-completed-website-for--1772808625106-91872e5a.png?_wi=2"
|
||||||
imageAlt="Poof Sites team collaboration"
|
imageAlt="Poof Sites team collaboration"
|
||||||
@@ -90,7 +90,7 @@ export default function LandingPage() {
|
|||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardMedia
|
<FeatureCardMedia
|
||||||
title="What We Deliver"
|
title="What We Deliver"
|
||||||
description="Our comprehensive web development services cover everything your business needs to thrive online. For questions about our services, contact us at poofsite@yahoo.com or 803-848-6793."
|
description="Our comprehensive web development services cover everything your business needs to thrive online"
|
||||||
tag="Services"
|
tag="Services"
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -117,7 +117,7 @@ export default function LandingPage() {
|
|||||||
<div id="work" data-section="work">
|
<div id="work" data-section="work">
|
||||||
<ProductCardOne
|
<ProductCardOne
|
||||||
title="Featured Projects"
|
title="Featured Projects"
|
||||||
description="Explore some of our recent work showcasing diverse industries and creative solutions. For inquiries about your project, reach out to poofsite@yahoo.com or call 803-848-6793."
|
description="Explore some of our recent work showcasing diverse industries and creative solutions"
|
||||||
tag="Portfolio"
|
tag="Portfolio"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
@@ -194,7 +194,7 @@ export default function LandingPage() {
|
|||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardNine
|
<PricingCardNine
|
||||||
title="Let's Discuss Your Project"
|
title="Let's Discuss Your Project"
|
||||||
description="Every project is unique. Contact us for a custom quote tailored to your specific needs and requirements. Reach us at poofsite@yahoo.com or call 803-848-6793 for a detailed consultation."
|
description="Every project is unique. Contact us for a custom quote tailored to your specific needs and requirements."
|
||||||
tag="Pricing"
|
tag="Pricing"
|
||||||
tagIcon={DollarSign}
|
tagIcon={DollarSign}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -224,10 +224,10 @@ export default function LandingPage() {
|
|||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="Let's Build Something Amazing Together"
|
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. Contact us at poofsite@yahoo.com, call 803-848-6793, or schedule a consultation below."
|
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."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Email: poofsite@yahoo.com", href: "mailto:poofsite@yahoo.com" },
|
{ text: "Schedule Consultation", href: "mailto:hello@poofsites.com" },
|
||||||
{ text: "Call: 803-848-6793", href: "tel:8038486793" }
|
{ text: "View Pricing", href: "#pricing" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
@@ -258,10 +258,10 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact", items: [
|
title: "Contact", items: [
|
||||||
{ label: "Email: poofsite@yahoo.com", href: "mailto:poofsite@yahoo.com" },
|
{ label: "Email", href: "mailto:hello@poofsites.com" },
|
||||||
{ label: "Phone: 803-848-6793", href: "tel:8038486793" },
|
|
||||||
{ label: "Get in Touch", href: "#contact" },
|
{ label: "Get in Touch", href: "#contact" },
|
||||||
{ label: "Privacy Policy", href: "#" }
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user