Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -1,14 +1,11 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
@@ -16,23 +13,15 @@ export const metadata: Metadata = {
|
||||
description: 'Partner with AI Innovations, a premier AI agency specializing in intelligent solutions, custom model development, and strategic AI consulting to drive business growth.',
|
||||
keywords: ["AI agency, artificial intelligence, machine learning, deep learning, AI consulting, custom AI models, data analytics, intelligent automation, NLP, predictive analytics, AI solutions"],
|
||||
openGraph: {
|
||||
"title": "AI Innovations - Leading AI Agency for Business Transformation",
|
||||
"description": "Partner with AI Innovations, a premier AI agency specializing in intelligent solutions, custom model development, and strategic AI consulting to drive business growth.",
|
||||
"url": "https://www.ai-innovations.com",
|
||||
"siteName": "AI Innovations",
|
||||
"images": [
|
||||
"title": "AI Innovations - Leading AI Agency for Business Transformation", "description": "Partner with AI Innovations, a premier AI agency specializing in intelligent solutions, custom model development, and strategic AI consulting to drive business growth.", "url": "https://www.ai-innovations.com", "siteName": "AI Innovations", "images": [
|
||||
{
|
||||
"url": "http://img.b2bpic.net/free-photo/person-working-html-computer_23-2150038853.jpg",
|
||||
"alt": "Professionals collaborating with holographic AI projections"
|
||||
"url": "http://img.b2bpic.net/free-photo/person-working-html-computer_23-2150038853.jpg", "alt": "Professionals collaborating with holographic AI projections"
|
||||
}
|
||||
],
|
||||
"type": "website"
|
||||
},
|
||||
twitter: {
|
||||
"card": "summary_large_image",
|
||||
"title": "AI Innovations - Leading AI Agency for Business Transformation",
|
||||
"description": "Partner with AI Innovations, a premier AI agency specializing in intelligent solutions, custom model development, and strategic AI consulting to drive business growth.",
|
||||
"images": [
|
||||
"card": "summary_large_image", "title": "AI Innovations - Leading AI Agency for Business Transformation", "description": "Partner with AI Innovations, a premier AI agency specializing in intelligent solutions, custom model development, and strategic AI consulting to drive business growth.", "images": [
|
||||
"http://img.b2bpic.net/free-photo/person-working-html-computer_23-2150038853.jpg"
|
||||
]
|
||||
},
|
||||
@@ -42,13 +31,13 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -59,7 +48,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -64,8 +64,8 @@ export default function LandingPage() {
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "animated-grid"}}
|
||||
title="Unlocking the Power of AI for Your Business"
|
||||
description="We are a leading AI agency, transforming businesses with intelligent solutions, custom models, and strategic insights."
|
||||
title="Beyond silence, we build the eternal."
|
||||
description="We craft enduring solutions that resonate beyond fleeting trends, creating lasting impact and value for your future."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-technology-background-concept_1194-617406.jpg", imageAlt: "Abstract neural network with glowing data points"},
|
||||
@@ -97,10 +97,9 @@ export default function LandingPage() {
|
||||
tag="Innovate with AI"
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Solutions", href: "#solutions"},
|
||||
{
|
||||
text: "Get a Free Consultation", href: "#contact"},
|
||||
text: "Begin Journey", href: "#about"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-competitive-employee_1098-2870.jpg", alt: "AI Innovations Team Member 1"},
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user