diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 147de6c..1e056e4 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -88,7 +88,7 @@ export default function AboutPage() { description="Beautipatler was founded on a simple belief: great design is transformative. We partner with brands to create stunning digital experiences that engage, inspire, and drive real business results." subdescription="With over a decade of combined expertise in design, technology, and user experience, our team is passionate about pushing creative boundaries and delivering exceptional value." icon={Sparkles} - imageSrc="http://img.b2bpic.net/free-photo/tech-people-trying-achieve-ambitious-sustainability-goals_23-2150950192.jpg" + imageSrc="http://img.b2bpic.net/free-photo/tech-people-trying-achieve-ambitious-sustainability-goals_23-2150950192.jpg?_wi=2" imageAlt="Team collaboration creative workspace modern" mediaAnimation="blur-reveal" useInvertedBackground={false} @@ -107,19 +107,19 @@ export default function AboutPage() { { title: "Creativity Without Limits", description: "We believe there are no boundaries to what great design can achieve. We push creative limits every day to deliver exceptional results.", - imageSrc: "http://img.b2bpic.net/free-photo/photovoltaics-factory-expert-designs-production-lines-cad-app-using-tablet_482257-124379.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/photovoltaics-factory-expert-designs-production-lines-cad-app-using-tablet_482257-124379.jpg?_wi=2", imageAlt: "Creative innovation and design process", }, { title: "User-Centric Design", description: "Every pixel, every interaction, every animation is designed with the end user in mind. Beautiful design must also be intuitive and functional.", - imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150105003.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150105003.jpg?_wi=2", imageAlt: "User experience and engagement", }, { title: "Measurable Impact", description: "We don't just create beautiful things—we create beautiful things that work. Our designs drive engagement, conversions, and loyalty.", - imageSrc: "http://img.b2bpic.net/free-photo/concept-family-virus-protection_493343-30172.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/concept-family-virus-protection_493343-30172.jpg?_wi=2", imageAlt: "Results and performance metrics", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..981242c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,49 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Archivo } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Beautipatler - Modern Design & Beautiful Patterns", + description: "Create stunning digital experiences with Beautipatler. Modern design platform with beautiful patterns that engage and inspire.", + keywords: "design platform, beautiful patterns, modern design, engagement, creative experience, digital design", + openGraph: { + title: "Beautipatler - Modern & Dynamic Beautiful Design", + description: "Create stunning digital experiences with beautiful patterns and modern design principles.", + siteName: "Beautipatler", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Beautipatler - Beautiful Modern Design", + description: "Transform your vision into stunning digital experiences.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +52,9 @@ export default function RootLayout({ return ( - + {children}