- Added "Coming soon" pages for future pages;

- Added two more sections to the About page;
- Fixed some typos;
This commit is contained in:
Tiago Ribeiro
2024-02-01 16:40:06 +00:00
parent 26a2c18839
commit e78f8834e6
13 changed files with 414 additions and 54 deletions

6
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,6 @@
import About from "@/templates/About";
import ComingSoon from "@/templates/ComingSoon";
export default function Page() {
return <ComingSoon page="/contact" language="en" />;
}