mirror of
https://github.com/siv-org/siv.git
synced 2026-01-10 02:47:58 -05:00
@@ -1,11 +1,14 @@
|
||||
import Image from 'next/image'
|
||||
|
||||
import { BannerAnnouncement } from './BannerAnnouncement'
|
||||
import { darkBlue } from './colors'
|
||||
import { HeaderBar } from './HeaderBar'
|
||||
|
||||
export const AboveFold = () => (
|
||||
<section>
|
||||
<HeaderBar />
|
||||
|
||||
<BannerAnnouncement />
|
||||
|
||||
<h1>
|
||||
Secure Internet Voting
|
||||
<div className="underline-container">
|
||||
|
||||
16
src/homepage/BannerAnnouncement.tsx
Normal file
16
src/homepage/BannerAnnouncement.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
export const BannerAnnouncement = () => {
|
||||
return (
|
||||
<div className="w-full px-4 py-3 text-base italic font-medium text-center text-gray-900 rounded-lg shadow-xl bg-slate-200 my-11 md:text-lg">
|
||||
DEF CON 2024 security report is now available —{' '}
|
||||
<a
|
||||
className="!text-blue-700"
|
||||
href="https://hack.siv.org/reports/2024defcon"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
See the findings
|
||||
</a>
|
||||
.
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user