first commit

This commit is contained in:
unknown
2023-01-27 20:50:01 +08:00
commit a5e17d8c5d
69 changed files with 12547 additions and 0 deletions

25
pages/rules.jsx Normal file
View File

@ -0,0 +1,25 @@
/* eslint-disable unicorn/filename-case */
import { AspectRatio } from '@chakra-ui/react';
import Head from 'next/head';
import { DraughtsRulesContent } from '../components/content/DraughtsRulesContent';
import { MainLayout } from '../components/layout/MainLayout';
export default function History() {
return (
<MainLayout>
<Head>
<title>Givan Checkers - Peraturan &amp; Cara Bermain</title>
</Head>
<DraughtsRulesContent />
{/*<AspectRatio maxW="md" radio={16 / 9}>
<iframe
src="https://www.youtube.com/embed/PgNN6CdkYXs"
title="YouTube video player"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
></iframe>
</AspectRatio>*/}
</MainLayout>
);
}