Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b7f614dd2 | |||
| a6aedd9980 | |||
| 23021d05e9 | |||
| 6bd0a6e023 | |||
| fe29ed0f10 | |||
| 3ff7cbd154 | |||
| a6142fb748 | |||
| 202d841021 | |||
| 92f2fdc70f | |||
| 1ca0a6f724 | |||
| a31e220f43 | |||
| 544cd27853 | |||
| 1ab16552d4 | |||
| 0d720ba1b4 | |||
| d71bcf361e | |||
| 352e198644 | |||
| 5a89f624c6 | |||
| f918d9eef3 | |||
| 6ba51a0e99 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user