Merge version_1 into main #1
@@ -56,7 +56,7 @@ export default function FeaturesPage() {
|
||||
"Customize dashboards to track what matters most to your organization.",
|
||||
"Export reports in multiple formats for stakeholder presentations.",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-detailed-analytics-dashboard-showing-r-1773335761778-cbc7ded7.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-detailed-analytics-dashboard-showing-r-1773335761778-cbc7ded7.png?_wi=2",
|
||||
imageAlt: "Real-time analytics dashboard",
|
||||
},
|
||||
{
|
||||
@@ -67,7 +67,7 @@ export default function FeaturesPage() {
|
||||
"API-first architecture enables custom connections and automation workflows.",
|
||||
"Sync data across platforms in real-time without manual intervention.",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-visual-representation-of-system-integr-1773335761136-d8dc6440.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-visual-representation-of-system-integr-1773335761136-d8dc6440.png?_wi=2",
|
||||
imageAlt: "Integration workflow diagram",
|
||||
},
|
||||
{
|
||||
@@ -78,7 +78,7 @@ export default function FeaturesPage() {
|
||||
"Multi-factor authentication and role-based access control ensure security.",
|
||||
"Regular security audits and penetration testing maintain the highest standards.",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/an-abstract-representation-of-cybersecur-1773335761577-c8f2c0af.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/an-abstract-representation-of-cybersecur-1773335761577-c8f2c0af.png?_wi=2",
|
||||
imageAlt: "Security infrastructure",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,28 +1,57 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat, Inter } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } 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 { Montserrat } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Diesel - Enterprise Software Platform",
|
||||
description: "Enterprise-grade software that scales with your business. Real-time analytics, 500+ integrations, 99.99% uptime, and bank-grade security.",
|
||||
keywords: "enterprise software, business platform, analytics, integration, scalable solutions",
|
||||
openGraph: {
|
||||
title: "Diesel - Enterprise Software Platform",
|
||||
description: "Transform your operations with enterprise software built for scale.",
|
||||
siteName: "Diesel",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-sophisticated-enterprise-software-dash-1773335761706-27964fdb.png",
|
||||
alt: "Diesel enterprise software dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Diesel - Enterprise Software Platform",
|
||||
description: "Enterprise-grade software that scales with your business.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-sophisticated-enterprise-software-dash-1773335761706-27964fdb.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,16 +60,18 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} ${halant.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `${getVisualEditScript()}`
|
||||
}}
|
||||
/>
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `${getVisualEditScript()}`,
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -93,7 +93,7 @@ export default function HomePage() {
|
||||
"Customize dashboards to track what matters most to your organization.",
|
||||
"Export reports in multiple formats for stakeholder presentations.",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-detailed-analytics-dashboard-showing-r-1773335761778-cbc7ded7.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-detailed-analytics-dashboard-showing-r-1773335761778-cbc7ded7.png?_wi=1",
|
||||
imageAlt: "Real-time analytics dashboard",
|
||||
},
|
||||
{
|
||||
@@ -104,7 +104,7 @@ export default function HomePage() {
|
||||
"API-first architecture enables custom connections and automation workflows.",
|
||||
"Sync data across platforms in real-time without manual intervention.",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-visual-representation-of-system-integr-1773335761136-d8dc6440.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-visual-representation-of-system-integr-1773335761136-d8dc6440.png?_wi=1",
|
||||
imageAlt: "Integration workflow diagram",
|
||||
},
|
||||
{
|
||||
@@ -115,7 +115,7 @@ export default function HomePage() {
|
||||
"Multi-factor authentication and role-based access control ensure security.",
|
||||
"Regular security audits and penetration testing maintain the highest standards.",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/an-abstract-representation-of-cybersecur-1773335761577-c8f2c0af.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/an-abstract-representation-of-cybersecur-1773335761577-c8f2c0af.png?_wi=1",
|
||||
imageAlt: "Security infrastructure",
|
||||
},
|
||||
{
|
||||
@@ -328,7 +328,7 @@ export default function HomePage() {
|
||||
tagIcon={Mail}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-modern-minimalist-office-environment-w-1773335761185-b8003542.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-modern-minimalist-office-environment-w-1773335761185-b8003542.png?_wi=1"
|
||||
imageAlt="Modern office environment"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="your@company.com"
|
||||
|
||||
@@ -201,7 +201,7 @@ export default function PricingPage() {
|
||||
tagIcon={Mail}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-modern-minimalist-office-environment-w-1773335761185-b8003542.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ar14Romu8cXPoV1qZTRMemg0LL/a-modern-minimalist-office-environment-w-1773335761185-b8003542.png?_wi=2"
|
||||
imageAlt="Modern office environment"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user