from starhtml import *
from starui import *
Div(
Article(
Header(
H3("Getting Started with StarUI", cls="text-xl font-bold mb-2"),
P("Learn how to build beautiful user interfaces", cls="text-muted-foreground"),
Div(
Badge("Tutorial"),
Separator(orientation="vertical", cls="mx-2 h-4"),
Badge("Beginner", variant="secondary"),
Separator(orientation="vertical", cls="mx-2 h-4"),
Span("5 min read", cls="text-sm text-muted-foreground"),
cls="flex items-center mt-3"
),
cls="mb-6"
),
Separator(cls="mb-6"),
Div(
H4("Introduction", cls="font-semibold mb-3"),
P("StarUI is a modern component library that makes it easy to build beautiful, accessible user interfaces.", cls="text-sm text-muted-foreground leading-relaxed"),
cls="mb-6"
),
Separator(cls="mb-6"),
Div(
H4("Quick Start", cls="font-semibold mb-3"),
P("Get up and running in minutes with our simple installation process.", cls="text-sm text-muted-foreground leading-relaxed"),
cls="mb-6"
),
Separator(cls="mb-6"),
Div(
Span("Published on March 15, 2024", cls="text-xs text-muted-foreground"),
Separator(orientation="vertical", cls="mx-3 h-6"),
Span("Updated March 20, 2024", cls="text-xs text-muted-foreground"),
cls="flex items-center mt-auto"
),
cls="max-w-2xl p-6 border rounded-lg flex flex-col min-h-[300px]"
)
)