Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-03-14 07:59:29 +00:00
2 changed files with 43 additions and 11 deletions

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 { Lato } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato",
@@ -20,6 +24,32 @@ const lato = Lato({
weight: ["100", "300", "400", "700", "900"]
});
export const metadata: Metadata = {
title: "777 Internet Cafe & Music Services | Fast Internet & Printing in Brixton",
description: "Fast internet, professional printing & scanning, and music services in Brixton, Johannesburg. 4.5 star rating. Call 011 837 1323 or visit us opposite ABSA Bank on Collins Street.",
keywords: "internet cafe Brixton, printing services Johannesburg, fast internet near me, document typing, music recording Brixton, internet cafe Collins Street",
metadataBase: new URL("https://777internetcafe.co.za"),
alternates: {
canonical: "https://777internetcafe.co.za"
},
openGraph: {
title: "777 Internet Cafe & Music Records | Brixton, Johannesburg",
description: "Your trusted local destination for fast internet, professional printing, document services, and music support. 4.5 stars from 28 reviews.",
url: "https://777internetcafe.co.za",
siteName: "777 Internet Cafe & Music Records",
type: "website"
},
twitter: {
card: "summary_large_image",
title: "Fast Internet & Printing Services in Brixton - 777 Cafe",
description: "Affordable internet access, professional printing, CV typing, and music services. Located opposite ABSA Bank. Call 011 837 1323"
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +58,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +72,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -134,7 +134,7 @@ export default function ServicesPage() {
name: "Professional Printing",
price: "Affordable Rates",
variant: "Color & B/W",
imageSrc: "http://img.b2bpic.net/free-photo/managing-smart-speakers-concept_23-2150170079.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/managing-smart-speakers-concept_23-2150170079.jpg?_wi=1",
imageAlt: "Professional printing services",
},
{
@@ -142,7 +142,7 @@ export default function ServicesPage() {
name: "Scanning & Copying",
price: "Quick Turnaround",
variant: "Document Prep",
imageSrc: "http://img.b2bpic.net/free-photo/managing-smart-speakers-concept_23-2150170079.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/managing-smart-speakers-concept_23-2150170079.jpg?_wi=2",
imageAlt: "Scanning and photocopying",
},
{
@@ -150,7 +150,7 @@ export default function ServicesPage() {
name: "CV & Document Typing",
price: "Professional Help",
variant: "Expert Assistance",
imageSrc: "http://img.b2bpic.net/free-photo/managing-smart-speakers-concept_23-2150170079.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/managing-smart-speakers-concept_23-2150170079.jpg?_wi=3",
imageAlt: "CV typing and document services",
},
]}