Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 16:36:39 +00:00
2 changed files with 17 additions and 45 deletions

View File

@@ -1,54 +1,30 @@
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 { Poppins, Playfair_Display } 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 poppins = Poppins({
subsets: ["latin"],
variable: "--font-poppins", weight: ["400", "500", "600", "700", "800"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
const playfair = Playfair_Display({
subsets: ["latin"],
variable: "--font-playfair", weight: ["400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Kiborg: Honest Apple Device Recommendations | Premium Tech Consulting", description: "Find the perfect Apple device for your needs. Kiborg offers guided device selection, transparent pricing, and lifetime support—no upselling, just honest expertise.", keywords: "Apple devices, iPhone, MacBook, iPad, tech consultant, device recommendation, electronics retailer", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Kiborg: Honest Apple Device Recommendations", description: "Find the perfect Apple device tailored to your goals and budget with our guided selection process.", type: "website", siteName: "Kiborg", images: [
{
url: "http://img.b2bpic.net/free-photo/laptop-phone-marble-table_53876-71230.jpg", alt: "Kiborg: Premium Apple devices and expert guidance"},
],
},
twitter: {
card: "summary_large_image", title: "Kiborg: Honest Apple Device Recommendations", description: "Find the perfect Apple device tailored to your goals and budget.", images: ["http://img.b2bpic.net/free-photo/laptop-phone-marble-table_53876-71230.jpg"],
},
};
title: "Kiborg - Expert Apple Device Selection Guide", description: "Find your perfect Apple device with personalized recommendations. Take our guided quiz to get honest advice based on your needs, budget, and workflow."};
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 className={`${poppins.variable} ${playfair.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1392,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -105,16 +105,13 @@ export default function LandingPage() {
buttonAnimation="slide-up"
features={[
{
id: 1,
tag: "Step One", title: "Tell Us Your Needs", subtitle: "What's your primary use case?", description: "Answer a few quick questions about your work style, daily tasks, and budget. We're here to understand your real requirements, not sell you something unnecessary.", imageSrc: "http://img.b2bpic.net/free-vector/task-management-application_23-2148628459.jpg?_wi=1"
id: 1, tag: "Step One", title: "Tell Us Your Needs", subtitle: "What's your primary use case?", description: "Answer a few quick questions about your work style, daily tasks, and budget. We're here to understand your real requirements, not sell you something unnecessary.", imageSrc: "http://img.b2bpic.net/free-vector/task-management-application_23-2148628459.jpg?_wi=1"
},
{
id: 2,
tag: "Step Two", title: "Get Personalized Recommendations", subtitle: "Models tailored to you", description: "Receive a curated selection of 2-3 devices that match your exact needs. Each recommendation includes transparent pricing and honest performance comparisons.", imageSrc: "http://img.b2bpic.net/free-vector/task-management-application_23-2148628459.jpg?_wi=2"
id: 2, tag: "Step Two", title: "Get Personalized Recommendations", subtitle: "Models tailored to you", description: "Receive a curated selection of 2-3 devices that match your exact needs. Each recommendation includes transparent pricing and honest performance comparisons.", imageSrc: "http://img.b2bpic.net/free-vector/task-management-application_23-2148628459.jpg?_wi=2"
},
{
id: 3,
tag: "Step Three", title: "Expert Support at Every Stage", subtitle: "We're here to help you decide", description: "Chat with our specialists about any device, get setup assistance after purchase, and enjoy lifetime customer support. Your satisfaction is our priority.", imageSrc: "http://img.b2bpic.net/free-vector/task-management-application_23-2148628459.jpg?_wi=3"
id: 3, tag: "Step Three", title: "Expert Support at Every Stage", subtitle: "We're here to help you decide", description: "Chat with our specialists about any device, get setup assistance after purchase, and enjoy lifetime customer support. Your satisfaction is our priority.", imageSrc: "http://img.b2bpic.net/free-vector/task-management-application_23-2148628459.jpg?_wi=3"
},
]}
/>