diff --git a/src/components/GitHubBadge.tsx b/src/components/GitHubBadge.tsx
new file mode 100644
index 0000000..82a1eb1
--- /dev/null
+++ b/src/components/GitHubBadge.tsx
@@ -0,0 +1,11 @@
+import { faGithub } from '@fortawesome/free-brands-svg-icons';
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
+
+export default function GitHubBadge() {
+ return (
+
+ );
+}
\ No newline at end of file
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 6148ca9..d335e11 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,4 +1,5 @@
import NavBar from '@/components/home/NavBar';
+import GitHubBadge from '@/components/GitHubBadge';
import {
ChatHistory,
FloatingTextBox,
@@ -11,15 +12,14 @@ import {
workSansHeavy,
} from '@/components/misc';
import { TalkFormLogo } from '@/components/talkform';
-import { faGithub } from '@fortawesome/free-brands-svg-icons';
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import Link from 'next/link';
export default function Home() {
return (
<>
-
+
Chat to create. Chat to fill. Zero config.{' '}
-
+
@@ -49,15 +49,6 @@ function GetStartedButtons() {
return (
<>
-
- {' '}
- View on GitHub
-
);
}
+
function SpecificsTextOnRight(props: {
heading: string;
content: string;
@@ -156,7 +148,7 @@ function SpecificsTextOnRight(props: {
function Specifics() {
return (
-
+
Faster, easier, more powerful.
@@ -206,4 +198,4 @@ function Specifics() {
);
-}
+}
\ No newline at end of file