1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/** @jsxImportSource https://esm.sh/react */
const ForbetHeader = () => {
return (
<div className="flex justify-between items-center py-4 px-8 bg-gray-800 text-white">
<div className="container mx-auto px-4 sm:px-8">
<div className="flex justify-between items-center">
<div className="text-xl font-bold">Predictions</div>
<div className="flex space-x-4">
<a
href="https://nmsilva-forbetkelly.web.val.run"
className="text-gray-300 hover:text-white"
>
Events
</a>
<a
href="https://nmsilva-forbetkellyreport.web.val.run/"
className="text-gray-300 hover:text-white"
>
Reporting
</a>
</div>
</div>
</div>
</div>
);
};
export { ForbetHeader };
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
September 20, 2024