mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
added pagehero
This commit is contained in:
@@ -15,7 +15,6 @@ const navigation = [
|
||||
{ name: "Armory", href: "/Armory", current: false },
|
||||
{ name: "Products", href: "/Products", current: false },
|
||||
{ name: "Db Data", href: "/Products/lowers", current: false },
|
||||
{ name: "Completed Builds", href: "#", current: false },
|
||||
{ name: "Brands", href: "/Brands", current: false },
|
||||
];
|
||||
|
||||
|
||||
13
src/components/PageHero/index.tsx
Normal file
13
src/components/PageHero/index.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
|
||||
interface PageHeroProps {
|
||||
title: string;
|
||||
}
|
||||
|
||||
export default function PageHero({ title }: PageHeroProps) {
|
||||
return (
|
||||
<div className="mb-6 bg-slate-700 text-center py-10">
|
||||
<h1 className="text-2xl uppercase font-bold">{title}</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -41,7 +41,7 @@ const navigation = {
|
||||
id: 'lower-parts',
|
||||
name: 'Lower Parts',
|
||||
items: [
|
||||
{ name: 'Lower Receivers', href: '#' },
|
||||
{ name: 'Lower Receivers', href: '/Products/lowers' },
|
||||
{ name: 'Grips', href: '#' },
|
||||
{ name: 'Stocks', href: '#' },
|
||||
{ name: 'Triggers', href: '#' },
|
||||
|
||||
Reference in New Issue
Block a user