diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-11-22 21:58:45 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-22 21:58:45 -0800 |
| commit | 77a0b69d9a0dd755a0a59a4c1dc3f3d045327e89 (patch) | |
| tree | 423c31591b868e0ccd4577c9b259f4895918f164 /src/app/_componenets/TitleBar | |
| parent | 02e1e6ad3a4ca2a52e1045b5ed62858e55d8159b (diff) | |
feat: re-implement individual statistic pages on next
Diffstat (limited to 'src/app/_componenets/TitleBar')
| -rw-r--r-- | src/app/_componenets/TitleBar/TitleBar.tsx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/app/_componenets/TitleBar/TitleBar.tsx b/src/app/_componenets/TitleBar/TitleBar.tsx deleted file mode 100644 index 27bebfc..0000000 --- a/src/app/_componenets/TitleBar/TitleBar.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import React from 'react'; -import Image from 'next/image'; - -interface TitleBarProps { - title: string; -} - -const TitleBar: React.FC<TitleBarProps> = ({ title }) => { - return ( - <div className="title-bar p-5 shadow-md" style={{ backgroundColor: '#2D4B71' }}> - <div style={{ width: 'fit-content', whiteSpace: 'nowrap', overflow: 'hidden' }}> - <span className="text-white text-4xl font-bold">{title}</span> - </div> - </div> - ); -}; - -export default TitleBar;
\ No newline at end of file |
