fix aAAAAAAAAAA

This commit is contained in:
MCorange 2023-09-30 23:06:10 +03:00
parent 062a893460
commit df19701dfd
No known key found for this signature in database
GPG Key ID: BFC3CC200C408BD7
3 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,7 @@ const App: Component = () => {
<Route path="/social" component={Socials} />
<Route path="/about" component={About} />
<Route path="/donate" component={Donate} />
<Route path="/r/:id" component={Redirect}>
<Route path="/r/:id" component={Redirect} />
{/* {redirects.map((val)=>{
return (
<Route path={val.href} component={()=>{
@ -31,7 +31,6 @@ const App: Component = () => {
}}/>
)
})} */}
</Route>
</Routes>
</div>
</Router>

View File

@ -7,6 +7,7 @@ import python_logo from "../assets/lang_icons/python.svg"
import c_logo from "../assets/lang_icons/C.svg"
import cpp_logo from "../assets/lang_icons/CPP.svg"
import js_logo from "../assets/lang_icons/js.png" // :(
import { A } from "@solidjs/router"
function ListItem(logo: string | any, name: string) {
return (
@ -47,9 +48,9 @@ export default function Home() {
<h1>Other stuff about me</h1>
<h2>You can get my contact info and socials <a href="/socials">here</a></h2>
<h2>Buy me a monster <a>here</a></h2>
<h2>Check out my work at my <a href="/r/github">GitHub</a></h2>
<h2>You can get my contact info and socials <A href="/socials">here</A></h2>
<h2>Buy me a monster <A href="/donate">here</A></h2>
<h2>Check out my work at my <A href="/r/github">GitHub</A></h2>
<h5>Note: I am a horrible web developer, if you want to help me improve my website you can do that <a href="https://github.com/MCorange99/personal_website">here</a></h5>
</>

View File

@ -11,10 +11,10 @@ function ListItem(logo: string | any, name: string, href: string) {
<tbody>
<tr>
<td>
<a href={href}><img width={32} height={32} src={logo}></img></a>
<A href={href}><img width={32} height={32} src={logo}></img></A>
</td>
<td>
<a href={href}><h2 class="m-0" style={"margin:3px;"}>{name}</h2></a>
<A href={href}><h2 class="m-0" style={"margin:3px;"}>{name}</h2></A>
</td>
</tr>
</tbody>