refactor: rename Aboutme component file to About
This commit is contained in:
parent
db8eeceb9b
commit
3998de5fbc
2 changed files with 3 additions and 3 deletions
|
|
@ -1,12 +1,12 @@
|
|||
import Hero from "../components/Hero";
|
||||
import Aboutme from "@/components/Aboutme";
|
||||
import About from "@/components/About";
|
||||
import Skills from "@/components/Skills";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<main className="min-h-screen bg-slate-950 text-slate-100 selection:bg-blue-500/30 selection:text-blue-200">
|
||||
<Hero />
|
||||
<Aboutme />
|
||||
<About />
|
||||
<Skills />
|
||||
</main>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
export default function Aboutme() {
|
||||
export default function About() {
|
||||
return (
|
||||
<section
|
||||
id="aboutme"
|
||||
Loading…
Reference in a new issue