Skip to content
Snippets Groups Projects
Commit c9592ef6 authored by Rafael László's avatar Rafael László :speech_balloon:
Browse files

Add initial gallery page

Former-commit-id: 251ae36ff3eb6f9333d319890963c87c3a115b03
parent 1b3a9b02
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,7 @@ const config = { ...@@ -56,6 +56,7 @@ const config = {
position: "right", position: "right",
label: "Ismertetők", label: "Ismertetők",
}, },
{ to: "/gallery", label: "Galéria", position: "right" },
{ to: "/support", label: "Support", position: "right" }, { to: "/support", label: "Support", position: "right" },
{ to: "/contact", label: "Elérhetőségek", position: "right" }, { to: "/contact", label: "Elérhetőségek", position: "right" },
], ],
......
import React from "react";
import clsx from "clsx";
import Layout from "@theme/Layout";
import Link from "@docusaurus/Link";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import styles from "./index.module.css";
import HomepageFeatures from "../components/HomepageFeatures";
export default function Gallery() {
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={`${siteConfig.title}`}
description="A Kollégiumi Számítástechnikai Kör weboldala"
>
<main
class="d-flex justify-content-center align-items-center flex-column"
style={{ height: "120px" }}
>
<h3>Hamarosan 👷</h3>
</main>
</Layout>
);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment