Skip to content

Commit dc1db6d

Browse files
committed
final
1 parent efac817 commit dc1db6d

File tree

7 files changed

+228
-12
lines changed

7 files changed

+228
-12
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Sahil Atahar
3+
Copyright (c) 2024 Aryan Jain
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -123,18 +123,18 @@ Also, huge gratitude to Tldraw contributors for their amazing library. For more
123123
<tbody>
124124
<tr>
125125
<td align="center" valign="top">
126-
<img src="https://github.com/sahilatahar.png" width="120px;" alt="Sahil Atahar"/>
126+
<img src="https://github.com/gitsofaryan.png" width="120px;" alt="Aryan Jain"/>
127127
<br />
128-
<b>Sahil Atahar</b>
128+
<b>Aryan Jain</b>
129129
</td>
130130
</tr>
131131
<tr>
132132
<td align="center">
133-
<a href="https://github.com/sahilatahar">
133+
<a href="https://github.com/gitsofaryan">
134134
<img src="https://img.shields.io/badge/GitHub-100000.svg?style=for-the-badge&logo=github&logoColor=white"/>
135135
</a>
136136
<br/>
137-
<a href="https://linkedin.com/in/sahilatahar">
137+
<a href="https://linkedin.com/in/aryan-jain07">
138138
<img src="https://img.shields.io/badge/linkedin-%230077B5.svg?style=for-the-badge&logo=linkedin&logoColor=white"/>
139139
</a>
140140
</td>

client/src/assets/codespace.svg

+216
Loading

client/src/components/GitHubCorner.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function GitHubCorner() {
77

88
return (
99
<a
10-
href="https://github.com/sahilatahar/Code-Sync"
10+
href="https://github.com/gitsofaryan/codespace"
1111
className="github-corner"
1212
aria-label="View source on GitHub"
1313
target="_blank"

client/src/components/common/Footer.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ function Footer() {
44
<span>
55
Build with ❤️ by{" "}
66
<a
7-
href="https://github.com/sahilatahar"
7+
href="https://github.com/gitsofaryan"
88
className="text-primary underline underline-offset-1"
99
>
10-
sahilatahar
10+
aryanjain
1111
</a>
1212
</span>
1313
</footer>

client/src/components/forms/FormComponent.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ChangeEvent, FormEvent, useEffect, useRef } from "react"
66
import { toast } from "react-hot-toast"
77
import { useLocation, useNavigate } from "react-router-dom"
88
import { v4 as uuidv4 } from "uuid"
9-
import logo from "@/assets/logo.svg"
9+
import logo from "@/assets/codespace.svg"
1010

1111
const FormComponent = () => {
1212
const location = useLocation()
@@ -90,7 +90,7 @@ const FormComponent = () => {
9090

9191
return (
9292
<div className="flex w-full max-w-[500px] flex-col items-center justify-center gap-4 p-4 sm:w-[500px] sm:p-8">
93-
<img src={logo} alt="Logo" className="w-full"/>
93+
<img src={logo} alt="Logo" className="w-full h-full mx-20"/>
9494
<form onSubmit={joinRoom} className="flex w-full flex-col gap-4">
9595
<input
9696
type="text"

client/src/pages/HomePage.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import illustration from "@/assets/illustration.svg"
22
import FormComponent from "@/components/forms/FormComponent"
3-
// import Footer from "@/components/common/Footer";
3+
import Footer from "@/components/common/Footer";
44

55
function HomePage() {
66
return (
@@ -17,7 +17,7 @@ function HomePage() {
1717
<FormComponent />
1818
</div>
1919
</div>
20-
{/* <Footer /> */}
20+
<Footer />
2121
</div>
2222
)
2323
}

0 commit comments

Comments
 (0)