Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions www/src/config/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ export const siteConfig = {
url: 'https://dotui.org',
name: 'dotUI',
title: 'dotUI',
tagline: 'The Design System Studio for the Web',
description:
"Build your design system, not someone else's. Compose beautiful, accessible React components and export them as code you own.",
'The design system studio for the web. Every design decision is yours — build on real components, then install with the shadcn CLI or export to v0.',
keywords: [
'dotUI',
'React',
Expand All @@ -24,9 +25,9 @@ export const siteConfig = {
creator: '@mehdibha',
},
og: {
title: 'Ship unique.',
title: 'The Design System Studio for the Web',
description:
"Build your design system, not someone else's. Compose beautiful, accessible React components and export them as code you own.",
'Every design decision is yours — build on real components, then install with the shadcn CLI or export to v0.',
},
links: {
github: 'https://github.com/mehdibha/dotUI',
Expand Down
8 changes: 4 additions & 4 deletions www/src/modules/marketing/home-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ export function HomePage() {
<section className="container flex flex-col pt-14 sm:pt-18 md:pt-26">
<div className="flex flex-col items-center text-center">
<h1 className="[font-feature-settings:'calt'_0,'rlig','ss11'] text-[clamp(1.75rem,calc((100vw-2rem)/10.3),3rem)] leading-[1.17] font-normal tracking-[-0.06em] text-balance antialiased sm:text-[3rem] sm:leading-[3.5rem] xl:text-6xl xl:leading-none">
Build your design system,
The Design System Studio
<br />
not someone else&rsquo;s.
<span className="text-fg-muted">for the Web</span>
</h1>
<p className="mt-5 max-w-2xl text-lg leading-relaxed text-balance text-fg-muted">
Set the colors, the type, the whole personality. Every component
follows. Export it as code you own, or straight to v0.
Every design decision is yours, previewed live on real components.
Install with the shadcn CLI, or export straight to v0.
</p>
<div className="mt-9 flex items-center gap-3">
<LinkButton href="/create" variant="primary" size="lg">
Expand Down
2 changes: 1 addition & 1 deletion www/src/routes/__root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const RouterDevtools =

export const Route = createRootRoute({
head: () => {
const title = `${siteConfig.title} - ${siteConfig.description}`
const title = `${siteConfig.title} - ${siteConfig.tagline}`
const description = truncateOnWord(siteConfig.description, 148, true)
const ogImageUrl = `${siteConfig.url}/og?title=${encodeURIComponent(siteConfig.og.title)}&description=${encodeURIComponent(siteConfig.og.description)}`

Expand Down
Loading