5 Commits

Author SHA1 Message Date
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 33 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import type { Metadata } from "next";
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: "We build websites that convert. Poof Sites specializes in creating stunning, responsive websites that drive business growth."};
export default function RootLayout({
children,
@@ -10,7 +10,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -7,10 +7,11 @@ import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCa
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
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 (
@@ -32,6 +33,7 @@ export default function LandingPage() {
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Work", id: "work" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
brandName="Poof Sites"
@@ -137,6 +139,28 @@ export default function LandingPage() {
/>
</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">
<TestimonialCardTwelve
testimonials={[
@@ -200,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" }
@@ -228,14 +252,15 @@ export default function LandingPage() {
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Work", href: "#work" },
{ label: "Team", href: "#team" },
{ label: "Pricing", href: "#pricing" }
]
},
{
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: "#" }
]
}