Skip to content

Commit 48ee597

Browse files
committed
feat: add brand imagery to documentation and demo app
- Added banner image to README.md for improved project presentation - Integrated Crest logo into demo app navbar alongside brand text - Added required image assets to .github/assets and public directories - Updated navbar brand link to use flex layout for logo alignment
1 parent 4053c98 commit 48ee597

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/assets/crest-ui-banner.png

1.67 MB
Loading

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 🏔️ Crest UI — Design System
2-
2+
![Crest UI — Design System & UI Framework](.github/assets/crest-ui-banner.png)
33
A design-forward, component-driven UI system that blends modern SaaS clarity with the textures and palette of the high desert and mountains. Built for speed, polish, and multi-brand extensibility across Crest Code Creative projects.
44

55
- **Framework**: React + Next.js

apps/demo/app/layout.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type { Metadata } from "next";
22
import "./globals.css";
33
import Link from "next/link";
4+
import Image from "next/image";
45
import { Navbar, NavbarInner, NavbarBrand, NavbarNav, NavbarItem, Footer, FooterInner, FooterNote } from "@crest-ui/ui/server";
56

67
export const metadata: Metadata = {
@@ -15,7 +16,10 @@ export default function RootLayout({ children }: { children: React.ReactNode })
1516
<Navbar elevated>
1617
<NavbarInner>
1718
<NavbarBrand>
18-
<Link href="/" className="hover:opacity-80">Crest</Link>
19+
<Link href="/" className="flex items-center gap-2 hover:opacity-80">
20+
<Image src="/crest-logo.png" alt="Crest Code Creative logo" width={28} height={28} priority />
21+
<span>Crest</span>
22+
</Link>
1923
</NavbarBrand>
2024
<NavbarNav>
2125
<NavbarItem>

apps/demo/public/crest-logo.png

1.43 MB
Loading

0 commit comments

Comments
 (0)