15 lines
571 B
TypeScript
Raw Normal View History

2024-07-10 23:31:54 +05:00
import navStyles from '../styles/nav.module.scss'
export const Banner = () => {
return (
<div className={navStyles.FundingCampaign}>
2024-08-16 11:47:54 +00:00
<p
2024-07-10 23:31:54 +05:00
className={navStyles.FundingCampaignLink}
>
2024-08-16 12:04:43 +00:00
DEG Mods is currently in pre-alpha (<a href="https://geyser.fund/entry/3335" target="_blank" style="color: white;text-decoration: underline;">Learn more</a>).
Check out its funding campaign (<a href="https://geyser.fund/project/degmods" target="_blank" style="color: white;text-decoration: underline;">Learn more</a>).
2024-08-16 11:47:54 +00:00
</p>
2024-07-10 23:31:54 +05:00
</div>
)
}