2024-09-28 00:18:55 +08:00
|
|
|
|
import { Introduction } from "@/components/about-page/Introduction";
|
2024-01-06 20:53:18 +08:00
|
|
|
|
import { Separator } from "@/components/ui/separator";
|
2023-12-25 17:21:39 +08:00
|
|
|
|
import { Footer } from "@/components/utils/Footer";
|
2024-08-16 14:12:30 +08:00
|
|
|
|
import { ContentContainer, Page } from "@/components/utils/Layout";
|
2023-12-25 17:21:39 +08:00
|
|
|
|
import { NavBar } from "@/components/utils/NavBar";
|
2024-09-28 00:18:55 +08:00
|
|
|
|
import { PageTitle } from "@/components/utils/PageTitle";
|
2023-12-25 17:21:39 +08:00
|
|
|
|
import { SEO } from "@/components/utils/SEO";
|
|
|
|
|
|
import { SocialIcons } from "@/components/utils/SocialIcons";
|
|
|
|
|
|
import { Config } from "@/data/config";
|
2024-04-03 22:08:27 +08:00
|
|
|
|
|
2023-12-25 17:21:39 +08:00
|
|
|
|
import Link from "next/link";
|
|
|
|
|
|
|
|
|
|
|
|
export default function AboutPage() {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Page>
|
|
|
|
|
|
<SEO
|
|
|
|
|
|
coverURL={Config.PageCovers.websiteCoverURL}
|
2024-04-03 22:08:27 +08:00
|
|
|
|
description={"Type your brief self-introduction in a sentence here make SEO recognize it easily."}
|
|
|
|
|
|
title={`About Me - ${Config.AuthorName}`}
|
2023-12-25 17:21:39 +08:00
|
|
|
|
/>
|
2024-01-09 16:48:48 +08:00
|
|
|
|
<NavBar />
|
2023-12-25 17:21:39 +08:00
|
|
|
|
<ContentContainer>
|
2024-09-28 00:18:55 +08:00
|
|
|
|
<PageTitle>{"ABOUT ME"}</PageTitle>
|
2024-01-06 20:53:18 +08:00
|
|
|
|
<Separator />
|
2024-09-28 00:18:55 +08:00
|
|
|
|
<Introduction />
|
2024-01-15 11:44:48 +08:00
|
|
|
|
<Separator />
|
2023-12-25 17:21:39 +08:00
|
|
|
|
<SocialIcons />
|
2024-01-15 11:44:48 +08:00
|
|
|
|
<Separator />
|
2023-12-25 17:21:39 +08:00
|
|
|
|
|
2024-08-14 12:57:22 +08:00
|
|
|
|
<ul className="mx-auto my-10 list-disc px-5 md:w-2/3">
|
2023-12-25 17:21:39 +08:00
|
|
|
|
{Config.SocialLinks.github && (
|
|
|
|
|
|
<li className="my-2">
|
|
|
|
|
|
{"📕 Check out my github profile at "}
|
2024-04-03 22:08:27 +08:00
|
|
|
|
<Link className="underline" href={`https://github.com/${Config.SocialLinks.github}`} target="_blank">
|
2023-12-25 17:21:39 +08:00
|
|
|
|
Github
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
)}
|
2023-12-29 19:55:54 +08:00
|
|
|
|
<li className="my-2">🖥️ Programming stack: TypeScript, JavaScript, C++, C, Rust, Go and so on.</li>
|
|
|
|
|
|
<li className="my-2">🤝 I am looking for friends who are fund of XXXX</li>
|
2023-12-25 17:21:39 +08:00
|
|
|
|
{Config.SocialLinks.twitter && (
|
|
|
|
|
|
<li className="my-2">
|
|
|
|
|
|
{"📫 How to reach me on Twitter: "}
|
2024-04-03 22:08:27 +08:00
|
|
|
|
<Link className="link" href={`https://twitter.com/${Config.SocialLinks.twitter}`} target="_blank">
|
2023-12-25 17:21:39 +08:00
|
|
|
|
{Config.SocialLinks.twitter}
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
)}
|
2023-12-29 19:55:54 +08:00
|
|
|
|
<li className="my-2">Language : 汉语 / English / 한국어 / 日本語 </li>
|
2023-12-25 17:21:39 +08:00
|
|
|
|
<li className="my-2">Gender Identity : Male / Female / MTF / FTM / And Others </li>
|
|
|
|
|
|
<li className="my-2">From : Your Country, State / Province</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
2024-08-14 12:57:22 +08:00
|
|
|
|
<div className="mx-auto my-10 font-bold md:w-2/3">
|
2023-12-25 17:21:39 +08:00
|
|
|
|
{
|
|
|
|
|
|
"** In addition to the above content, you can also add other customized components, content, etc. to this page. **"
|
|
|
|
|
|
}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</ContentContainer>
|
|
|
|
|
|
<Footer />
|
|
|
|
|
|
</Page>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|