Skip to content

Commit 18caca8

Browse files
committed
fix: update email address from robert@eggl.dev to info@eggl.dev across multiple components
1 parent aff0b0d commit 18caca8

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

app/components/neo-navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Navbar = () => {
3636
href: 'https://linkedin.com/in/roberteggl',
3737
label: 'LinkedIn'
3838
},
39-
{ icon: Mail, href: 'mailto:robert@eggl.dev', label: 'Email' }
39+
{ icon: Mail, href: 'mailto:info@eggl.dev', label: 'Email' }
4040
]
4141

4242
interface NavLinkProps {

app/components/sections/contact-section.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const ContactSection = () => {
3838
if (hoverIndex !== null) {
3939
const newLine =
4040
hoverIndex === 0
41-
? '> Opening mail client to robert@eggl.dev'
41+
? '> Opening mail client to info@eggl.dev'
4242
: hoverIndex === 1
4343
? '> Connecting to GitHub repository'
4444
: hoverIndex === 2
@@ -180,7 +180,7 @@ const ContactSection = () => {
180180

181181
<div className="space-y-6">
182182
<motion.a
183-
href="mailto:robert@eggl.dev"
183+
href="mailto:info@eggl.dev"
184184
className="flex items-center group bg-background p-4 border-2 border-foreground shadow-[4px_4px_0px_0px_rgba(250,250,250,0.8)] transition-all hover:translate-x-[-2px] hover:translate-y-[-2px] hover:shadow-[8px_8px_0px_0px_rgba(250,250,250,0.8)]"
185185
onMouseEnter={() => setHoverIndex(0)}
186186
onMouseLeave={() => setHoverIndex(null)}
@@ -192,7 +192,7 @@ const ContactSection = () => {
192192
</div>
193193
<div className="flex-1">
194194
<span className="block text-xl">Email</span>
195-
<span className="text-foreground/70">robert@eggl.dev</span>
195+
<span className="text-foreground/70">info@eggl.dev</span>
196196
</div>
197197
<ArrowUpRight
198198
size={20}

app/components/sections/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const Footer = () => {
3737
</a>
3838

3939
<a
40-
href="mailto:robert@eggl.dev"
40+
href="mailto:info@eggl.dev"
4141
className="neo-button p-3 !aspect-square flex items-center justify-center"
4242
aria-label="Email"
4343
>

app/data/imprint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const imprintData: ImprintData = {
2020
title: 'Kontaktinformationen',
2121
name: 'Robert Eggl',
2222
address: process.env.NEXT_PUBLIC_ADDRESS ?? '',
23-
email: 'robert@eggl.dev',
23+
email: 'info@eggl.dev',
2424
phone: process.env.NEXT_PUBLIC_PHONE ?? ''
2525
},
2626
legalInformation: {

app/legal/privacy/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const Privacy = () => {
215215
<br />
216216
<br />
217217
Telefon: {imprintData.contactInformation.phone} <br />
218-
E-Mail: robert@eggl.dev <br />
218+
E-Mail: info@eggl.dev <br />
219219
<br />
220220
Verantwortliche Stelle ist die natürliche oder juristische Person,
221221
die allein oder gemeinsam mit anderen über die Zwecke und Mittel

0 commit comments

Comments
 (0)