Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conferences and contact subpages #7

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions public/img/18.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/img/xix.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions public/img/xx.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions src/app/conferences/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import Image from 'next/image';
import Link from 'next/link';
import { FaExternalLinkAlt } from 'react-icons/fa';

export default function Conferences() {
return (
<div className='flex flex-col'>
<p className='text-4xl font-bold mb-20 text-center'>Tekintsd meg korábbi konferenciáinkat:</p>
<div className='flex justify-between flex-col md:flex-row gap-10'>
<Link href='https://2023.konferencia.simonyi.bme.hu' target='blank'>
<div className='flex flex-col justify-center items-center'>
<Image src={'/img/xx.svg'} alt='XX. Simonyi Konferencia' width={200} height={96} />
<div className='flex gap-2 items-center'>
<p className='text-4xl font-bold'>2023</p>
<FaExternalLinkAlt />
</div>
</div>
</Link>
<Link href='https://2022.konferencia.simonyi.bme.hu' target='blank'>
<div className='flex flex-col justify-center items-center'>
<Image src={'/img/xix.svg'} alt='XIX. Simonyi Konferencia' width={225} height={96} />
<div className='flex gap-2 items-center'>
<p className='text-4xl font-bold'>2022</p>
<FaExternalLinkAlt />
</div>
</div>
</Link>
<Link href='https://2021.konferencia.simonyi.bme.hu' target='blank'>
<div className='flex flex-col justify-center items-center'>
<Image src={'/img/18.svg'} alt='18. Simonyi Konferencia' width={100} height={96} />
<div className='flex gap-2 items-center'>
<p className='text-4xl font-bold'>2021</p>
<FaExternalLinkAlt />
</div>
</div>
</Link>
berenteb marked this conversation as resolved.
Show resolved Hide resolved
</div>
</div>
);
}
17 changes: 17 additions & 0 deletions src/app/contact/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import Link from 'next/link';

export default function Contact() {
return (
<div className='flex flex-col'>
<p className='text-4xl font-bold mb-20 text-center'>Vállalati és sajtómegkeresések, általános kérdések:</p>
<p className='text-2xl font-normal mb-20 text-center'>lorem ipsum?</p>
<Link
href='mailto:[email protected]'
className='text-2xl font-semibold text-center hover:text-brand'
target='blank'
>
[email protected]
</Link>
</div>
);
}
4 changes: 3 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ export default function RootLayout({ children }: { children: React.ReactNode })
</Link>
</div>
</div>
<div className='max-w-xl p-20 mx-auto relative h-full w-full flex items-center'>{children}</div>
<div className='max-w-6xl p-20 mx-auto relative h-full w-full flex justify-center items-center'>
{children}
</div>
<div className='p-10 md:p-15 flex justify-between items-center flex-wrap gap-10 flex-col md:flex-row'>
<div className='flex items-center gap-5 text-[40px]'>
<Link href='https://www.instagram.com/simonyikonf' className='brand-link' target='blank'>
Expand Down