From 9ff1694e6753f2a4ef1e9d6f1edfdd039d710fb7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:24:20 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 30 ++++++------------------------ 1 file changed, 6 insertions(+), 24 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 16ffd09..d432071 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Real Connect - Verified Social Connections & Real Meetups", description: "Experience genuine connections with verified profiles and real-world meetups. Real Connect eliminates fake profiles and brings verified people together.", keywords: "verified connections, real meetups, authentic friendships, social app, location-based networking", metadataBase: new URL("https://realconnect.app"), + title: "Insidz - Real Social Connections Made Simple", description: "Connect with real people through verified profiles and authentic experiences. Insidz brings genuine friendships to life.", keywords: "verified connections, real meetups, authentic friendships, social app, location-based networking", metadataBase: new URL("https://insidz.app"), alternates: { - canonical: "https://realconnect.app" + canonical: "https://insidz.app" }, openGraph: { - title: "Real Connect - Ready to Experience Real Connections", description: "Verified profiles. Authentic moments. Genuine friendships. Join the most trusted social platform.", url: "https://realconnect.app", siteName: "Real Connect", type: "website", images: [ + title: "Insidz - Real Social Connections Made Simple", description: "Connect with real people through verified profiles and authentic experiences.", url: "https://insidz.app", siteName: "Insidz", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/attractive-friends-sitting-cafe-looking-phone_171337-19708.jpg", alt: "Real Connect - Verified social connections platform" + url: "http://img.b2bpic.net/free-photo/attractive-friends-sitting-cafe-looking-phone_171337-19708.jpg", alt: "Insidz - Real social connections platform" } ] }, twitter: { - card: "summary_large_image", title: "Real Connect - Verified Social Connections", description: "Experience genuine connections with verified profiles. Ready to experience real connections?", images: ["http://img.b2bpic.net/free-photo/attractive-friends-sitting-cafe-looking-phone_171337-19708.jpg"] + card: "summary_large_image", title: "Insidz - Real Social Connections", description: "Connect with real people through verified profiles and authentic experiences.", images: ["http://img.b2bpic.net/free-photo/attractive-friends-sitting-cafe-looking-phone_171337-19708.jpg"] }, robots: { index: true, @@ -53,9 +37,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 1b0387e417a7729086a593619d10ef084736a362 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:24:21 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 56 ++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2e6300b..9b42a55 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,7 +28,7 @@ export default function LandingPage() { > -- 2.49.1 From 387a595dbc40a12ee3c2919b38dd5e9cb647a98d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:24:21 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b925f2a..cde2ea6 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f6f7; - --card: #ffffff; - --foreground: #25190c; - --primary-cta: #ff6207; + --background: #fafffb; + --card: #f7fffa; + --foreground: #001a0a; + --primary-cta: #0a7039; --primary-cta-text: #f7f6f7; --secondary-cta: #ffffff; --secondary-cta-text: #25190c; - --accent: #ffce93; - --background-accent: #e8cfa8; + --accent: #a8d9be; + --background-accent: #6bbf8e; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1