From de318e873bb4894042bcae0983f5db8081340f76 Mon Sep 17 00:00:00 2001
From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com>
Date: Sat, 16 Sep 2023 17:25:22 -0500
Subject: [PATCH] feat: add contact page
---
README.md | 1 +
src/app/about/page.tsx | 107 ++++++++++++++++++++++++++++++++++++++-
src/app/contact/page.tsx | 42 ++++++++++++++-
3 files changed, 148 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 954ee26..0f7b4cf 100644
--- a/README.md
+++ b/README.md
@@ -8,3 +8,4 @@ An [X](https://twitter.com/home) clone built as a submission for the [WebDevCody
- [Clerk](https://clerk.com/) - User authentication and management
- [Tailwind](https://tailwindcss.com/) - Styling
- [Vercel](https://vercel.com/) - Hosting
+- [Codemirror](https://codemirror.net/) - Editor
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 6610a60..69fa838 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -5,5 +5,110 @@ export const metadata: Metadata = {
};
export default function AboutPage() {
- return
About
;
+ return (
+
+
+
+
+ Welcome to{' '}
+
+ conveX
+
+
+
+ An X inspired social site that supports following other users,
+ liking posts, and sharing both long and short posts formatted with{' '}
+
+ Markdown
+
+ .
+
+
+
+ About
+
+ This site was built as a submission for the WebDevCody{' '}
+
+ hackathon
+
+ . The following are some technologies that were used to build the
+ site:
+
+
+
+
+
+ );
}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index b04545c..b4c871d 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,9 +1,49 @@
import { Metadata } from 'next';
+import { RiTwitterXLine } from 'react-icons/ri';
+import { TiSocialLinkedin } from 'react-icons/ti';
+import { VscGithub } from 'react-icons/vsc';
export const metadata: Metadata = {
title: 'conveX | Contact',
};
export default function ContactPage() {
- return Contact
;
+ return (
+
+
+
+
+
+ );
}