logo
logo
WalkthroughAboutTest
Calendar
  • News
  • news 2
QA
  • Regression QA
  • Warriors Shop
  • Food & Beverage
  • Thrive City
  • Thrive City Shops
  • QA Test - DS
Slice Directory
    • Hero Slices

      • Simple Centered
      • Test page 2
      • Test page 3
    1import NextHead from 'next/head';
    2const Head = ({ title }: IHeadProps) => {
    3return (
    4<NextHead>
    5<title>{title ? `${title} | ` : ''}Golden State Warriors</title>
    6<meta name="description" content="Golden State Warriors" />
    7</NextHead>
    8  );
    9};
    10
    11interface IHeadProps {
    12title?: string;
    13}interface IHeadProps {
    14title?: string;
    15}
    16
    17export default Head;
    18
    Previous
    ← Test page 2