mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-21 04:33:56 +00:00
Fix landing page and add home button
This commit is contained in:
@@ -109,7 +109,7 @@ export function LandingPage() {
|
||||
<div className="absolute bottom-20 left-1/3 w-80 h-80 bg-cyan-500/10 rounded-full blur-3xl animate-pulse delay-2000"></div>
|
||||
</div>
|
||||
|
||||
<div className="relative container mx-auto px-6 py-24 md:py-32">
|
||||
<div className="relative container mx-auto min-h-[100dvh] p-4 flex items-center">
|
||||
<div className="text-center space-y-8 max-w-4xl mx-auto">
|
||||
{/* Main Headline */}
|
||||
<h1 className="text-5xl md:text-7xl font-bold bg-gradient-to-r from-white via-blue-100 to-cyan-200 bg-clip-text text-transparent leading-tight">
|
||||
|
||||
@@ -15,7 +15,13 @@ import {
|
||||
import { Settings, loadSettings, saveSettings } from "./settings";
|
||||
import { SettingsMenu } from "@/components/settings-menu";
|
||||
|
||||
import { PlayFill, StopFill, GearFill, PauseFill } from "react-bootstrap-icons";
|
||||
import {
|
||||
PlayFill,
|
||||
StopFill,
|
||||
GearFill,
|
||||
PauseFill,
|
||||
HouseFill,
|
||||
} from "react-bootstrap-icons";
|
||||
import { StatusIndicator } from "@/components/status-indicator";
|
||||
import { Header } from "./Header";
|
||||
|
||||
@@ -214,6 +220,11 @@ export class Playground extends React.Component<
|
||||
/>
|
||||
<div className="h-[100dvh] flex flex-col">
|
||||
<header className="flex shrink-0 items-center gap-2 border-b p-2 overflow-y-auto">
|
||||
<a href="#/">
|
||||
<Button size="sm" variant="secondary" className="fancy">
|
||||
<HouseFill />
|
||||
</Button>
|
||||
</a>
|
||||
<Button size="sm" className="fancy" onClick={this.start}>
|
||||
<PlayFill /> <span>Start</span>
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user