From b8ca168d1b1d6090f5f129407339feb4fe2025c5 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:18:38 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 94b5115..4ec8070 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,38 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "FoodCourt Obanikoro - Fresh Food Delivery & Dine-In Lagos", description: "Delicious affordable meals in Obanikoro, Somolu. Order delivery or dine-in. Fast service, great prices. Open daily for lunch, dinner & late-night bites.", keywords: "restaurant Obanikoro, food delivery Somolu, affordable meals Lagos, food near me, dine-in restaurant, Ikorodu Road", robots: { + title: "PENG — Your AI Study Companion", description: "Transform your study experience with PENG. Upload your notes and let AI help you learn smarter, faster, and more effectively.", keywords: "AI study, note taking, learning assistant, study companion, AI learning", robots: { index: true, follow: true, }, openGraph: { - title: "FoodCourt Obanikoro - Fresh Food Delivery", description: "Satisfy your cravings with affordable, freshly prepared meals. Order delivery or visit us in Obanikoro.", siteName: "FoodCourt Obanikoro", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/sliced-fried-pork-with-lemon-onion-red-onion-tomato-long-bean-butterfly-pea-flower-mint_1150-25869.jpg", alt: "FoodCourt Delicious Meals"}, - ], - }, + title: "PENG — Your AI Study Companion", description: "Upload your notes and unlock the power of AI-assisted learning.", siteName: "PENG", type: "website"}, twitter: { - card: "summary_large_image", title: "FoodCourt Obanikoro - Fresh Meals", description: "Affordable food for dine-in or delivery. Order now!", images: ["http://img.b2bpic.net/free-photo/sliced-fried-pork-with-lemon-onion-red-onion-tomato-long-bean-butterfly-pea-flower-mint_1150-25869.jpg"], - }, + card: "summary_large_image", title: "PENG — Your AI Study Companion", description: "Transform your study experience with AI."}, }; export default function RootLayout({ @@ -43,9 +27,7 @@ export default function RootLayout({ return ( - + {children} @@ -1419,4 +1401,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 8dd37dc455143622abd750ff18a59763de2c2def Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:18:39 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 260 +++++++++-------------------------------------- 1 file changed, 49 insertions(+), 211 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f654aa8..a3fb50a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,251 +3,89 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; -import ProductCardThree from "@/components/sections/product/ProductCardThree"; -import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; -import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { - CheckCircle, - Clock, - Flame, - MapPin, - Phone, - ShoppingCart, - Star, - UtensilsCrossed, - Zap, -} from "lucide-react"; +import { Sparkles, Upload, Zap, Brain } from "lucide-react"; -export default function FoodCourtPage() { +export default function PengPage() { return (
-
- - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
); -} \ No newline at end of file +} -- 2.49.1