Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50aad72169 | |||
| 181afe87d0 | |||
| d3bfa975ae | |||
| 7dc2f64932 | |||
| 1cdd4e3965 | |||
| b338f377c4 |
@@ -1,54 +1,18 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Custom Software Development | Blink22", description: "Build scalable, profitable software with Blink22. Expert custom development for ambitious businesses. Get your free project estimate today.", keywords: "custom software development, web applications, mobile development, software agency", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Custom Software Development | Blink22", description: "Transform your ideas into profitable software. Scalable solutions for ambitious businesses.", type: "website", siteName: "Blink22", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/hand-drawn-retro-computer-windows-element_23-2150374707.jpg", alt: "Blink22 Software Development"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Custom Software Development | Blink22", description: "Build profitable software with expert developers. Get your free estimate.", images: ["http://img.b2bpic.net/free-vector/hand-drawn-retro-computer-windows-element_23-2150374707.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Blink22 - Custom Software Development", description: "Transform your business with scalable, custom software solutions"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1380,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Sparkles, Award, Users, Shield, Zap, Lightbulb, Pencil, Code, Rocket, MessageSquare } from 'lucide-react';
|
||||
import { Sparkles, Award, Users, Shield, Zap, Lightbulb, Pencil, Code, Rocket, MessageSquare, TrendingUp } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -75,6 +75,34 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="kpi" data-section="kpi" className="py-20 lg:py-28">
|
||||
<FeatureBento
|
||||
title="Results That Matter"
|
||||
description="Our customers achieve measurable success with our custom software solutions."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "10x Growth Capacity", description: "Systems built to scale with your business, handling exponential growth seamlessly.", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: TrendingUp, label: "Average Increase", value: "10x" },
|
||||
{ icon: Zap, label: "Performance Boost", value: "3x" },
|
||||
{ icon: Shield, label: "Uptime", value: "99.9%" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Cost Efficiency", description: "Optimize operations and reduce overhead with intelligent software solutions.", bentoComponent: "line-chart"
|
||||
},
|
||||
{
|
||||
title: "Speed to Market", description: "Get your products and features launched faster with our agile development process.", bentoComponent: "animated-bar-chart"
|
||||
},
|
||||
{
|
||||
title: "ROI Driven", description: "Every feature built with measurable business impact and clear KPI alignment.", bentoComponent: "reveal-icon", icon: TrendingUp
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof" className="py-16 lg:py-24">
|
||||
<SocialProofOne
|
||||
title="Trusted by Leading Companies"
|
||||
|
||||
Reference in New Issue
Block a user