19 Commits

Author SHA1 Message Date
8b7f614dd2 Switch to version 2: modified src/app/page.tsx 2026-03-06 16:44:52 +00:00
a6aedd9980 Switch to version 2: modified src/app/layout.tsx 2026-03-06 16:44:51 +00:00
23021d05e9 Switch to version 3: modified src/app/page.tsx 2026-03-06 16:44:22 +00:00
6bd0a6e023 Switch to version 3: modified src/app/layout.tsx 2026-03-06 16:44:21 +00:00
fe29ed0f10 Switch to version 4: modified src/app/page.tsx 2026-03-06 16:44:15 +00:00
3ff7cbd154 Switch to version 4: modified src/app/layout.tsx 2026-03-06 16:44:14 +00:00
a6142fb748 Merge version_5 into main
Merge version_5 into main
2026-03-06 16:43:10 +00:00
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 70 additions and 5 deletions

View File

@@ -1,16 +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 { 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 = { 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 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>{children} <ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1378,6 +1417,7 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -7,6 +7,7 @@ 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';
@@ -32,6 +33,7 @@ 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"
@@ -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={[
@@ -228,6 +252,7 @@ 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" }
] ]
}, },