Skip to content

Commit 5ff0b4e

Browse files
authored
Merge pull request #8 from austrovis/fix/links-and-style
fixed links and footer overlaps
2 parents 7bff31d + d970542 commit 5ff0b4e

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

app/mailing-list/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ export default function MailingListPage() {
274274
<p className="text-black dark:text-white darkest:text-white font-medium mb-1">Email Method</p>
275275
<p className="text-black/70 dark:text-[#b9bbbe] darkest:text-white/70">
276276
Send an email to{' '}
277-
<a href="mailto:austrovis-request@cvast.tuwien.ac.at?subject=Unsubscribe" className="text-black dark:text-white darkest:text-white underline">
278-
austrovis-request@cvast.tuwien.ac.at
277+
<a href="mailto:austrovis-owner@cvast.tuwien.ac.at?subject=Unsubscribe" className="text-black dark:text-white darkest:text-white underline">
278+
austrovis-owner@cvast.tuwien.ac.at
279279
</a>
280280
{' '}with the subject line &quot;Unsubscribe&quot; from the address you want to unsubscribe (the message body can be empty)
281281
</p>
@@ -306,8 +306,8 @@ export default function MailingListPage() {
306306
<p className="text-black dark:text-white darkest:text-white font-medium mb-1">Contact the Owner</p>
307307
<p className="text-black/70 dark:text-[#b9bbbe] darkest:text-white/70">
308308
Email{' '}
309-
<a href="mailto:austrovis-request@cvast.tuwien.ac.at" className="text-black dark:text-white darkest:text-white underline">
310-
austrovis-request@cvast.tuwien.ac.at
309+
<a href="mailto:austrovis-owner@cvast.tuwien.ac.at" className="text-black dark:text-white darkest:text-white underline">
310+
austrovis-owner@cvast.tuwien.ac.at
311311
</a>
312312
{' '}if you need assistance unsubscribing
313313
</p>

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function Home() {
2424
</p>
2525
<div className="flex flex-col sm:flex-row gap-3 justify-center animate-slide-up" style={{ animationDelay: '0.2s' }}>
2626
<a
27-
href="/register"
27+
href="#newsletter"
2828
className="px-6 py-2.5 border border-black/20 dark:border-white/20 darkest:border-white/20 font-medium rounded-md hover:border-black/40 dark:hover:border-white/40 darkest:hover:border-white/40 hover:scale-105 transition-all text-sm text-black dark:text-white darkest:text-white"
2929
>
3030
Stay Updated

components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
export default function Footer() {
44
return (
55
<footer className="border-t mt-16 border-black/10 dark:border-[#40444b] darkest:border-white/20">
6-
<div className="max-w-7xl mx-auto px-6 py-10">
6+
<div className="max-w-7xl mx-auto px-6 py-10 pb-24 md:pb-10">
77
<div className="flex flex-col md:flex-row justify-between items-start md:items-center gap-8">
88
<div>
99
<h3 className="text-xl font-bold mb-2 text-black dark:text-white darkest:text-white">AustroVis</h3>

0 commit comments

Comments
 (0)