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 Hero from "../components/Hero";
|
||||||
import Aboutme from "@/components/Aboutme";
|
import About from "@/components/About";
|
||||||
import Skills from "@/components/Skills";
|
import Skills from "@/components/Skills";
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<main className="min-h-screen bg-slate-950 text-slate-100 selection:bg-blue-500/30 selection:text-blue-200">
|
<main className="min-h-screen bg-slate-950 text-slate-100 selection:bg-blue-500/30 selection:text-blue-200">
|
||||||
<Hero />
|
<Hero />
|
||||||
<Aboutme />
|
<About />
|
||||||
<Skills />
|
<Skills />
|
||||||
</main>
|
</main>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
export default function Aboutme() {
|
export default function About() {
|
||||||
return (
|
return (
|
||||||
<section
|
<section
|
||||||
id="aboutme"
|
id="aboutme"
|
||||||
Loading…
Reference in a new issue