mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
style: Adjust layout class names for consistency
This commit is contained in:
@@ -21,8 +21,8 @@ const Main = dynamic(() => import("./main"), { ssr: false });
|
||||
export default function HomePage() {
|
||||
const { isReplay } = useReplay();
|
||||
return (
|
||||
<div className="flex h-full w-full justify-center">
|
||||
<header className="fixed top-0 left-0 flex h-12 w-full w-screen items-center justify-between px-4">
|
||||
<div className="flex h-screen w-screen justify-center overscroll-none">
|
||||
<header className="fixed top-0 left-0 flex h-12 w-full items-center justify-between px-4">
|
||||
<Logo />
|
||||
<div className="flex items-center">
|
||||
<Tooltip title="Star DeerFlow on GitHub">
|
||||
|
||||
@@ -26,7 +26,7 @@ export default function RootLayout({
|
||||
}: Readonly<{ children: React.ReactNode }>) {
|
||||
return (
|
||||
<html lang="en" className={`${geist.variable}`} suppressHydrationWarning>
|
||||
<body className="bg-app h-screen w-screen overscroll-none">
|
||||
<body className="bg-app">
|
||||
<ThemeProviderWrapper>
|
||||
<TooltipProvider>{children}</TooltipProvider>
|
||||
</ThemeProviderWrapper>
|
||||
|
||||
@@ -29,7 +29,7 @@ import { Button } from "~/components/ui/button";
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<div className="dark flex flex-col items-center overflow-x-hidden">
|
||||
<div className="flex flex-col items-center">
|
||||
<Header />
|
||||
<main className="container flex flex-col items-center justify-center gap-56">
|
||||
<Jumbotron />
|
||||
@@ -323,7 +323,7 @@ function CoreFeatureSection() {
|
||||
title="Core Features"
|
||||
description="Find out what makes DeerFlow effective."
|
||||
/>
|
||||
<BentoGrid className="h-[75vh] w-full lg:grid-rows-3">
|
||||
<BentoGrid className="w-full lg:grid-rows-3">
|
||||
{features.map((feature) => (
|
||||
<BentoCard key={feature.name} {...feature} />
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user