mirror of
https://github.com/YuuKi-OS/Yuuki-web.git
synced 2026-02-18 22:01:09 +00:00
yuuki web init
This commit is contained in:
88
app/globals.css
Normal file
88
app/globals.css
Normal file
@@ -0,0 +1,88 @@
|
||||
@import 'tailwindcss';
|
||||
@import 'tw-animate-css';
|
||||
|
||||
@custom-variant dark (&:is(.dark *));
|
||||
|
||||
:root {
|
||||
--background: #050505; /* Preserved from existing */
|
||||
--foreground: #fafafa; /* Preserved from existing */
|
||||
--card: #0e0e0e; /* Preserved from existing */
|
||||
--card-foreground: #fafafa; /* Preserved from existing */
|
||||
--popover: #0e0e0e; /* Preserved from existing */
|
||||
--popover-foreground: #fafafa; /* Preserved from existing */
|
||||
--primary: #f472b6; /* Preserved from existing */
|
||||
--primary-foreground: #0a0a0a; /* Preserved from existing */
|
||||
--secondary: #161616; /* Preserved from existing */
|
||||
--secondary-foreground: #e5e5e5; /* Preserved from existing */
|
||||
--muted: #1a1a1a; /* Preserved from existing */
|
||||
--muted-foreground: #737373; /* Preserved from existing */
|
||||
--accent: #f472b6; /* Preserved from existing */
|
||||
--accent-foreground: #0a0a0a; /* Preserved from existing */
|
||||
--destructive: #ef4444; /* Preserved from existing */
|
||||
--destructive-foreground: #fafafa; /* Preserved from existing */
|
||||
--border: #1f1f1f; /* Preserved from existing */
|
||||
--input: #1f1f1f; /* Preserved from existing */
|
||||
--ring: #f472b6; /* Preserved from existing */
|
||||
--chart-1: #f472b6; /* Preserved from existing */
|
||||
--chart-2: #22c55e; /* Preserved from existing */
|
||||
--chart-3: #eab308; /* Preserved from existing */
|
||||
--chart-4: #3b82f6; /* Preserved from existing */
|
||||
--chart-5: #a855f7; /* Preserved from existing */
|
||||
--radius: 0.625rem; /* Preserved from existing */
|
||||
--sakura: #f472b6; /* Preserved from existing */
|
||||
--sakura-dim: rgba(244, 114, 182, 0.15); /* Preserved from existing */
|
||||
--sakura-border: rgba(244, 114, 182, 0.25); /* Preserved from existing */
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@theme inline {
|
||||
--font-sans: 'Geist', 'Geist Fallback'; /* Preserved from existing */
|
||||
--font-mono: 'Geist Mono', 'Geist Mono Fallback'; /* Preserved from existing */
|
||||
--color-background: var(--background);
|
||||
--color-foreground: var(--foreground);
|
||||
--color-card: var(--card);
|
||||
--color-card-foreground: var(--card-foreground);
|
||||
--color-popover: var(--popover);
|
||||
--color-popover-foreground: var(--popover-foreground);
|
||||
--color-primary: var(--primary);
|
||||
--color-primary-foreground: var(--primary-foreground);
|
||||
--color-secondary: var(--secondary);
|
||||
--color-secondary-foreground: var(--secondary-foreground);
|
||||
--color-muted: var(--muted);
|
||||
--color-muted-foreground: var(--muted-foreground);
|
||||
--color-accent: var(--accent);
|
||||
--color-accent-foreground: var(--accent-foreground);
|
||||
--color-destructive: var(--destructive);
|
||||
--color-destructive-foreground: var(--destructive-foreground);
|
||||
--color-border: var(--border);
|
||||
--color-input: var(--input);
|
||||
--color-ring: var(--ring);
|
||||
--color-chart-1: var(--chart-1);
|
||||
--color-chart-2: var(--chart-2);
|
||||
--color-chart-3: var(--chart-3);
|
||||
--color-chart-4: var(--chart-4);
|
||||
--color-chart-5: var(--chart-5);
|
||||
--radius-sm: calc(var(--radius) - 4px);
|
||||
--radius-md: calc(var(--radius) - 2px);
|
||||
--radius-lg: var(--radius);
|
||||
--radius-xl: calc(var(--radius) + 4px);
|
||||
--color-sakura: var(--sakura); /* Preserved from existing */
|
||||
--color-sakura-dim: var(--sakura-dim); /* Preserved from existing */
|
||||
--color-sakura-border: var(--sakura-border); /* Preserved from existing */
|
||||
|
||||
|
||||
}
|
||||
|
||||
@layer base {
|
||||
* {
|
||||
@apply border-border outline-ring/50;
|
||||
}
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
body {
|
||||
@apply bg-background text-foreground;
|
||||
}
|
||||
}
|
||||
46
app/layout.tsx
Normal file
46
app/layout.tsx
Normal file
@@ -0,0 +1,46 @@
|
||||
import React from "react"
|
||||
import type { Metadata } from 'next'
|
||||
import { Geist, Geist_Mono } from 'next/font/google'
|
||||
import { Analytics } from '@vercel/analytics/next'
|
||||
import './globals.css'
|
||||
|
||||
const _geist = Geist({ subsets: ["latin"] });
|
||||
const _geistMono = Geist_Mono({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Yuuki Project - Code Generation Trained on a Phone',
|
||||
description: 'A multilingual code generation model trained entirely on a smartphone by a single person. Zero budget. Zero cloud. Pure determination.',
|
||||
generator: 'v0.app',
|
||||
icons: {
|
||||
icon: [
|
||||
{
|
||||
url: '/icon-light-32x32.png',
|
||||
media: '(prefers-color-scheme: light)',
|
||||
},
|
||||
{
|
||||
url: '/icon-dark-32x32.png',
|
||||
media: '(prefers-color-scheme: dark)',
|
||||
},
|
||||
{
|
||||
url: '/icon.svg',
|
||||
type: 'image/svg+xml',
|
||||
},
|
||||
],
|
||||
apple: '/apple-icon.png',
|
||||
},
|
||||
}
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`font-sans antialiased`}>
|
||||
{children}
|
||||
<Analytics />
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
43
app/page.tsx
Normal file
43
app/page.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
import { Navbar } from "@/components/yuuki/navbar"
|
||||
import { Hero } from "@/components/yuuki/hero"
|
||||
import { ModelSection } from "@/components/yuuki/model-section"
|
||||
import { EcosystemSection } from "@/components/yuuki/ecosystem-section"
|
||||
import { DemoSection } from "@/components/yuuki/demo-section"
|
||||
import { StatsSection } from "@/components/yuuki/stats-section"
|
||||
import { CreatorSection } from "@/components/yuuki/creator-section"
|
||||
import { DonateSection } from "@/components/yuuki/donate-section"
|
||||
import { Footer } from "@/components/yuuki/footer"
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<main className="min-h-screen bg-background text-foreground">
|
||||
<Navbar />
|
||||
<Hero />
|
||||
<div className="mx-auto max-w-7xl px-6">
|
||||
<div className="h-px bg-gradient-to-r from-transparent via-border to-transparent" />
|
||||
</div>
|
||||
<ModelSection />
|
||||
<div className="mx-auto max-w-7xl px-6">
|
||||
<div className="h-px bg-gradient-to-r from-transparent via-border to-transparent" />
|
||||
</div>
|
||||
<EcosystemSection />
|
||||
<div className="mx-auto max-w-7xl px-6">
|
||||
<div className="h-px bg-gradient-to-r from-transparent via-border to-transparent" />
|
||||
</div>
|
||||
<DemoSection />
|
||||
<div className="mx-auto max-w-7xl px-6">
|
||||
<div className="h-px bg-gradient-to-r from-transparent via-border to-transparent" />
|
||||
</div>
|
||||
<StatsSection />
|
||||
<div className="mx-auto max-w-7xl px-6">
|
||||
<div className="h-px bg-gradient-to-r from-transparent via-border to-transparent" />
|
||||
</div>
|
||||
<CreatorSection />
|
||||
<div className="mx-auto max-w-7xl px-6">
|
||||
<div className="h-px bg-gradient-to-r from-transparent via-border to-transparent" />
|
||||
</div>
|
||||
<DonateSection />
|
||||
<Footer />
|
||||
</main>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user