Merge version_2 into main #2
@@ -1,51 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "KOREX - Premium Creative & Development Studio", description: "Transform your brand with award-winning design and development. Premium SaaS solutions from KOREX Studio. Enterprise-grade creativity meets cutting-edge technology.", keywords: "creative studio, web design, development, branding, SaaS, design agency, digital transformation", metadataBase: new URL("https://korex.uno"),
|
||||
alternates: {
|
||||
canonical: "https://korex.uno"},
|
||||
openGraph: {
|
||||
title: "KOREX - Creative Excellence Redefined", description: "Premium design and development solutions for visionary brands. Enterprise-grade creativity. Proven results.", url: "https://korex.uno", siteName: "KOREX Studio", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXTsrGlfvhG8tGnEEBTxCtlbLj/modern-creative-studio-workspace-with-de-1772738307936-43878ec5.png", alt: "KOREX Creative Studio"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "KOREX - Creative Studio", description: "Premium design and development for innovative brands", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXTsrGlfvhG8tGnEEBTxCtlbLj/modern-creative-studio-workspace-with-de-1772738307936-43878ec5.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "KOREX - Premium Creative & Development Solutions", description: "Transform your digital presence with enterprise-grade design and cutting-edge development from KOREX."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Award, Lightbulb, TrendingUp, Users, Zap } from 'lucide-react';
|
||||
import { Award, Lightbulb, TrendingUp, Users, Zap, Crown } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -144,7 +144,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "professional", title: "Professional", price: "$15,000", period: "project-based", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXTsrGlfvhG8tGnEEBTxCtlbLj/professional-package-visualization-multi-1772738307272-08c8d5f5.png", imageAlt: "Professional package", button: { text: "Start Project", href: "#contact" },
|
||||
features: ["Complete brand identity", "Website design & development", "Unlimited revisions (30 days)", "SEO optimization included", "Analytics setup & training"]
|
||||
features: ["Complete brand identity", "Website design & development", "Unlimited revisions (30 days)", "SEO optimization included", "Analytics setup & training", "90% of clients upgrade within 6 months"]
|
||||
},
|
||||
{
|
||||
id: "enterprise", title: "Enterprise", price: "Custom", period: "tailored solution", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXTsrGlfvhG8tGnEEBTxCtlbLj/enterprise-level-design-solutions-compre-1772738309834-0d00cae0.png", imageAlt: "Enterprise package", button: { text: "Schedule Consultation", href: "#contact" },
|
||||
@@ -155,9 +155,9 @@ export default function LandingPage() {
|
||||
containerClassName="py-20"
|
||||
textBoxTitleClassName="text-4xl md:text-5xl font-extrabold mb-6 text-foreground"
|
||||
textBoxDescriptionClassName="text-lg text-foreground/80 max-w-2xl mb-12"
|
||||
cardClassName="bg-card border-2 border-card rounded-xl overflow-hidden hover:shadow-2xl transition-all duration-300 group"
|
||||
cardClassName="bg-card border-2 border-card rounded-xl overflow-hidden hover:shadow-2xl transition-all duration-300 group relative"
|
||||
planImageClassName="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-500"
|
||||
planTitleClassName="text-2xl font-bold text-foreground mt-6 mb-2"
|
||||
planTitleClassName="text-2xl font-bold text-foreground mt-6 mb-2 flex items-center gap-2"
|
||||
planPriceClassName="text-4xl font-extrabold text-primary-cta mb-4"
|
||||
featuresListClassName="space-y-3 mb-6"
|
||||
featureItemClassName="flex items-center gap-3 text-foreground/80"
|
||||
|
||||
Reference in New Issue
Block a user