smart smart method by google gemini
This commit is contained in:
@@ -2,7 +2,6 @@ import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { TooltipProvider } from "@/components/ui/tooltip";
|
||||
import { QuickTopUI } from "@/components/QuickTopUI";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
@@ -15,7 +14,7 @@ const geistMono = Geist_Mono({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "OCbwoy3-Chan-blox",
|
||||
title: "ocbwoy3-chan-blox",
|
||||
description: "roblox meets next.js i think"
|
||||
};
|
||||
|
||||
@@ -27,10 +26,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en">
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased overflow-x-hidden`}
|
||||
>
|
||||
<TooltipProvider>
|
||||
<QuickTopUI />
|
||||
{children}
|
||||
</TooltipProvider>
|
||||
</body>
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
import { FriendsHomeSect } from "@/components/FriendsOnlineSection";
|
||||
import { GameCard } from "@/components/gameCard";
|
||||
import { HomeLoggedInHeader } from "@/components/loggedInHeader";
|
||||
import { QuickTopUI, QuickTopUILogoPart } from "@/components/QuickTopUI";
|
||||
import { VerifiedIcon } from "@/components/RobloxIcons";
|
||||
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
|
||||
import { Card, CardContent } from "@/components/ui/card";
|
||||
@@ -35,7 +36,9 @@ export default function Home() {
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="overflow-scroll no-scrollbar w-screen max-h-screen h-screen">
|
||||
<div className="overflow-scroll no-scrollbar w-screen max-h-screen h-screen antialiased overflow-x-hidden">
|
||||
<QuickTopUI />
|
||||
<QuickTopUILogoPart />
|
||||
<HomeLoggedInHeader />
|
||||
<FriendsHomeSect className="pt-8" />
|
||||
<div className="justify-center w-screen px-8 pt-6">
|
||||
|
||||
Reference in New Issue
Block a user