From 358661b7319a5a8a8fffced1a5f72fda5bcbc445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1muel=20Fekete?= Date: Thu, 14 Dec 2023 17:02:10 +0100 Subject: [PATCH] conferences and contact pages --- public/img/18.svg | 4 ++++ public/img/xix.svg | 5 +++++ public/img/xx.svg | 29 ++++++++++++++++++++++++++ src/app/conferences/page.tsx | 40 ++++++++++++++++++++++++++++++++++++ src/app/contact/page.tsx | 17 +++++++++++++++ src/app/layout.tsx | 4 +++- 6 files changed, 98 insertions(+), 1 deletion(-) create mode 100644 public/img/18.svg create mode 100644 public/img/xix.svg create mode 100644 public/img/xx.svg create mode 100644 src/app/conferences/page.tsx create mode 100644 src/app/contact/page.tsx diff --git a/public/img/18.svg b/public/img/18.svg new file mode 100644 index 0000000..6122ff0 --- /dev/null +++ b/public/img/18.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/img/xix.svg b/public/img/xix.svg new file mode 100644 index 0000000..ff8bd48 --- /dev/null +++ b/public/img/xix.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/img/xx.svg b/public/img/xx.svg new file mode 100644 index 0000000..c6bc199 --- /dev/null +++ b/public/img/xx.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/conferences/page.tsx b/src/app/conferences/page.tsx new file mode 100644 index 0000000..5e74c0c --- /dev/null +++ b/src/app/conferences/page.tsx @@ -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 ( +
+

Tekintsd meg korábbi konferenciáinkat:

+
+ +
+ XX. Simonyi Konferencia +
+

2023

+ +
+
+ + +
+ XIX. Simonyi Konferencia +
+

2022

+ +
+
+ + +
+ 18. Simonyi Konferencia +
+

2021

+ +
+
+ +
+
+ ); +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..5f12782 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,17 @@ +import Link from 'next/link'; + +export default function Contact() { + return ( +
+

Vállalati és sajtómegkeresések, általános kérdések:

+

lorem ipsum?

+ + konferencia@simonyi.bme.hu + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3da2d62..cc389a5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -38,7 +38,9 @@ export default function RootLayout({ children }: { children: React.ReactNode }) -
{children}
+
+ {children} +