12 Commits

Author SHA1 Message Date
202d841021 Update src/app/page.tsx 2026-03-06 16:43:05 +00:00
92f2fdc70f Update src/app/layout.tsx 2026-03-06 16:43:05 +00:00
1ca0a6f724 Switch to version 2: modified src/app/page.tsx 2026-03-06 16:41:19 +00:00
a31e220f43 Switch to version 2: modified src/app/layout.tsx 2026-03-06 16:41:19 +00:00
544cd27853 Switch to version 3: modified src/app/page.tsx 2026-03-06 16:41:08 +00:00
1ab16552d4 Switch to version 3: modified src/app/layout.tsx 2026-03-06 16:41:07 +00:00
0d720ba1b4 Merge version_4 into main
Merge version_4 into main
2026-03-06 16:39:54 +00:00
d71bcf361e Update src/app/page.tsx 2026-03-06 16:39:50 +00:00
352e198644 Update src/app/layout.tsx 2026-03-06 16:39:49 +00:00
5a89f624c6 Switch to version 2: modified src/app/page.tsx 2026-03-06 15:07:07 +00:00
f918d9eef3 Switch to version 2: modified src/app/layout.tsx 2026-03-06 15:07:07 +00:00
6ba51a0e99 Merge version_3 into main
Merge version_3 into main
2026-03-06 15:05:26 +00:00
2 changed files with 49 additions and 15 deletions

View File

@@ -1,7 +1,14 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Poof Sites - Web Development Studio", description: "We build websites that convert. Stunning, responsive web design and development for businesses across all industries."}; title: "Poof Sites - Web Development Studio", description: "Professional web development services that convert. We build stunning, responsive websites for startups and established brands."};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -10,7 +17,9 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body>{children} <body className={inter.variable}>
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `

View File

@@ -7,10 +7,11 @@ import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCa
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
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 } from 'lucide-react'; import { Sparkles, Rocket, CheckCircle, Zap, Star, Mail, ThumbsUp, DollarSign, Phone } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -32,18 +33,19 @@ export default function LandingPage() {
{ name: "Home", id: "home" }, { name: "Home", id: "home" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Work", id: "work" }, { name: "Work", id: "work" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
brandName="Poof Sites" brandName="Poof Sites"
bottomLeftText="Web Development Studio" bottomLeftText="Web Development Studio"
bottomRightText="hello@poofsites.com" bottomRightText="poofsite@yahoo.com | 803-848-6793"
/> />
</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." 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."
tag="Web Development Studio" tag="Web Development Studio"
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="slide-up"
@@ -76,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" 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."
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"
@@ -88,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" 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."
tag="Services" tag="Services"
tagIcon={Zap} tagIcon={Zap}
tagAnimation="slide-up" tagAnimation="slide-up"
@@ -115,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" 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."
tag="Portfolio" tag="Portfolio"
tagIcon={Star} tagIcon={Star}
tagAnimation="blur-reveal" tagAnimation="blur-reveal"
@@ -137,6 +139,28 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="team" data-section="team">
<TeamCardTen
title="Meet the Poof Sites Team"
tag="Our Experts"
tagAnimation="slide-up"
membersAnimation="slide-up"
memberVariant="default"
useInvertedBackground={true}
members={[
{
id: "1", name: "Alex Chen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/professional-headshot-of-a-web-developer-1772808624509-8f301364.png", imageAlt: "Alex Chen - Lead Developer"
},
{
id: "2", name: "Sarah Martinez", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/professional-headshot-of-a-ui-ux-designe-1772808625026-c18274c8.png", imageAlt: "Sarah Martinez - UI/UX Designer"
},
{
id: "3", name: "Jordan Davis", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/professional-headshot-of-a-project-manag-1772808625064-7de6dc91.png", imageAlt: "Jordan Davis - Project Manager"
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve <TestimonialCardTwelve
testimonials={[ testimonials={[
@@ -170,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." 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."
tag="Pricing" tag="Pricing"
tagIcon={DollarSign} tagIcon={DollarSign}
tagAnimation="slide-up" tagAnimation="slide-up"
@@ -200,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." 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."
buttons={[ buttons={[
{ text: "Schedule Consultation", href: "mailto:hello@poofsites.com" }, { text: "Email: poofsite@yahoo.com", href: "mailto:poofsite@yahoo.com" },
{ text: "View Pricing", href: "#pricing" } { text: "Call: 803-848-6793", href: "tel:8038486793" }
]} ]}
buttonAnimation="blur-reveal" buttonAnimation="blur-reveal"
background={{ variant: "plain" }} background={{ variant: "plain" }}
@@ -228,15 +252,16 @@ export default function LandingPage() {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "#about" }, { label: "About Us", href: "#about" },
{ label: "Our Work", href: "#work" }, { label: "Our Work", href: "#work" },
{ label: "Team", href: "#team" },
{ label: "Pricing", href: "#pricing" } { label: "Pricing", href: "#pricing" }
] ]
}, },
{ {
title: "Contact", items: [ 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: "Get in Touch", href: "#contact" },
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" }
{ label: "Terms of Service", href: "#" }
] ]
} }
]} ]}