From 8ea412550528129a752a4efb9e022bd855f27331 Mon Sep 17 00:00:00 2001 From: Nicholai Date: Sat, 24 Jan 2026 13:32:02 -0700 Subject: [PATCH] fix(branding): use compass logo on home page Replace generic tabler icon with actual compass logo using mask-image technique, colored with brand green. --- src/app/page.tsx | 92 +++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 76 insertions(+), 16 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 405c261..b1fa401 100755 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,23 +1,83 @@ import Link from "next/link"; -import { Button } from "@/components/ui/button"; -import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { IconArrowRight, IconBrandGithub } from "@tabler/icons-react"; export default function Home() { return ( -
- - - Compass - - Work-in-progress development preview - - - - - - +
+ + +
+
+

+ Construction Project Management +

+

+ Build With +
+ + Clarity + +

+

+ Project scheduling, file management, and team coordination + — purpose-built for construction professionals. +

+
+ + Enter Dashboard + + + + + View on GitHub + +
+
+
+ +
+ + © 2025 High Performance Structures + + + Open Source (MIT) + +
+ +
+
+
); }