Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +66,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -117,7 +117,7 @@ export default function HomePage() {
|
||||
description="We believe in the power of beautiful design. Our team of creative professionals is dedicated to transforming ideas into stunning visual realities that engage and inspire."
|
||||
subdescription="Since 2020, we've been delivering innovative design solutions that help brands stand out in a crowded digital landscape."
|
||||
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=1"
|
||||
imageAlt="Team collaboration creative workspace modern"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -136,19 +136,19 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Seamless Integration",
|
||||
description: "Integrate with your favorite design tools and workflows. Connect your entire creative ecosystem effortlessly.",
|
||||
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=1",
|
||||
imageAlt: "User experience interface design modern",
|
||||
},
|
||||
{
|
||||
title: "Advanced Analytics",
|
||||
description: "Track engagement metrics and performance insights in real time. Make data-driven design decisions.",
|
||||
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=1",
|
||||
imageAlt: "Data analytics dashboard visualization",
|
||||
},
|
||||
{
|
||||
title: "Enterprise Security",
|
||||
description: "Bank-grade security and encryption protect your creative assets. Your data is always safe and secure.",
|
||||
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=1",
|
||||
imageAlt: "Security protection digital safety cyber",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user