Skip to content

Commit a1ae0de

Browse files
committed
Add primary CTA link to HeroSection and update version in package.json
1 parent 8cf2590 commit a1ae0de

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

apps/docs/components/hero-section.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ export function HeroSection({ badge, title, subtitle, cta, className }: HeroSect
5151

5252
{/* CTA Buttons */}
5353
<div className="flex flex-col sm:flex-row items-center justify-center gap-4 pt-4">
54+
<Link
55+
href="/docs/introduction"
56+
className="inline-flex h-12 items-center justify-center rounded-lg bg-primary px-8 text-sm font-medium text-primary-foreground shadow transition-colors hover:bg-primary/90 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50"
57+
>
58+
{cta.primary}
59+
</Link>
5460
<Link
5561
href="/docs"
5662
className="inline-flex h-12 items-center justify-center rounded-lg border border-border bg-card/50 px-8 text-sm font-medium shadow-sm transition-all hover:bg-accent hover:text-accent-foreground backdrop-blur-sm hover:scale-105 hover:shadow-md focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50"

apps/docs/lib/homepage-i18n.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export interface HomepageTranslations {
8686
export const en: HomepageTranslations = {
8787
badge: {
8888
status: 'Protocol Specification',
89-
version: 'v1.0',
89+
version: 'v0.3.3 (Draft)',
9090
},
9191
hero: {
9292
title: {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/spec-monorepo",
3-
"version": "0.1.0",
3+
"version": "0.3.3",
44
"private": true,
55
"description": "ObjectStack Protocol & Specification - Monorepo for TypeScript Interfaces, JSON Schemas, and Convention Configurations",
66
"scripts": {

0 commit comments

Comments
 (0)