Second frontend, written in Next.JS + Typescript.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
943 B

import React from "react";
import Head from "next/head";
import styles from "./Layout.module.sass";
import { Sidebar } from "./Sidebar";
import MagicImage from "./MagicImage";
export const siteTitle = "Aite RP"
interface LayoutProps {
children: React.ReactNode
}
export default function Layout(props: LayoutProps) {
return (
<div className={styles.wrapper}>
<MagicImage opacity={0.50} alignH="right" fixed src="https://files.aiterp.net/misc/renders/2020-08-30%20-%20Archive.jpg" />
<Sidebar />
<div className={styles.container}>
<Head>
<link rel="icon" href="/favicon.ico" />
<meta
key="description"
name="description"
content="Learn how to build a personal website using Next.js"
/>
<meta key="og_title" name="og:title" content={"Aite RP"} />
</Head>
<main>{props.children}</main>
</div>
</div>
);
}