Skip to content

Commit

Permalink
about page
Browse files Browse the repository at this point in the history
  • Loading branch information
malmz committed May 17, 2024
1 parent f2ab297 commit e214600
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions app/routes/_main.about.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { Link } from '@remix-run/react';

export default function Page() {
return (
<section className='mx-auto mt-8 max-w-prose'>
<h2 className='mt-10 scroll-m-20 border-b pb-2 text-3xl font-semibold tracking-tight transition-colors first:mt-0'>
Om oss
</h2>
<p className='leading-7 [&:not(:first-child)]:mt-6'>
DFoto är Datateknologsektionens fotoförening. Vår ambition är att genom
foto och film föreviga alla arrangemang Datateknologen går på. Allt
ifrån iDrotts legendariska aktiviteter, till D6s storslagna fester och
Deltas episka pubar.
</p>

<p className='leading-7 [&:not(:first-child)]:mt-6'>
Du kan komma i kontakt med oss genom att maila{' '}
<Link
to='mailto:[email protected]'
className='font-medium text-primary underline underline-offset-4'
>
[email protected]
</Link>{' '}
eller skriva till vår{' '}
<Link
to='https://www.facebook.com/dfotochalmers/'
className='font-medium text-primary underline underline-offset-4'
>
Facebooksida
</Link>
.
</p>

<p className='text-xl font-semibold leading-7 [&:not(:first-child)]:mt-6'>
Vi ses genom kameralinsen!
</p>
</section>
);
}

0 comments on commit e214600

Please sign in to comment.