Skip to content

Commit

Permalink
move pages out of individual folders
Browse files Browse the repository at this point in the history
  • Loading branch information
lozog committed Feb 14, 2022
1 parent 0937030 commit 215b480
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/pages/home/index.tsx → src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react"
import { Link } from "gatsby";
import * as S from "styles/home";

export function Home() {
export default function Home() {
return (
<S.Container>
<S.Centerpiece>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react"
import { Layout } from "components/layout";
import { Home } from "pages/home";
import Home from "pages/home";

export default function App() {
return (
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 215b480

Please sign in to comment.