use constants.APP_NAME

This commit is contained in:
2024-12-13 12:16:29 -05:00
parent b4d91ea36a
commit 49cbc11a94
11 changed files with 30 additions and 28 deletions

View File

@@ -1,4 +1,5 @@
import Link from "next/link";
import constants from '@lib/constants';
export default function Header() {
{/* Header Section */ }
@@ -6,7 +7,7 @@ export default function Header() {
(
<header className="bg-gray-800 text-white py-4 shadow-md">
<div className="container mx-auto px-6 flex justify-between items-center">
<h1 className="text-2xl font-bold">Ballistic Builder</h1>
<h1 className="text-2xl font-bold">{constants.APP_NAME}</h1>
<nav>
<ul className="flex space-x-4">
<li><Link href="#features" className="hover:underline">Features</Link></li>