Initial commit

This commit is contained in:
2026-03-28 17:16:33 +03:00
commit fe9aff3fec
167 changed files with 23898 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import React from 'react';
function AboutPage() {
return <div>AboutPage</div>;
}
export default AboutPage;
+14
View File
@@ -0,0 +1,14 @@
import { getTranslations } from "next-intl/server";
import HomeCard from "@/components/site/home/home-card";
export async function generateMetadata() {
const t = await getTranslations();
return {
title: `${t("home")} | FCS`,
};
}
export default function Home() {
return <HomeCard />;
}
+21
View File
@@ -0,0 +1,21 @@
'use client';
import { Container, Flex } from '@chakra-ui/react';
import Header from '@/components/layout/header/header';
import Footer from '@/components/layout/footer/footer';
import BackToTop from '@/components/ui/back-to-top';
function MainLayout({ children }: { children: React.ReactNode }) {
return (
<Flex minH='100vh' direction='column'>
<Header />
<Container as='main' maxW='8xl' flex='1' py={4}>
{children}
</Container>
<BackToTop />
<Footer />
</Flex>
);
}
export default MainLayout;