diff --git a/public/file.svg b/public/file.svg deleted file mode 100644 index 004145c..0000000 --- a/public/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/globe.svg b/public/globe.svg deleted file mode 100644 index 567f17b..0000000 --- a/public/globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/images/icon.png b/public/images/icon.png new file mode 100644 index 0000000..ae65282 Binary files /dev/null and b/public/images/icon.png differ diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index 7705396..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/window.svg b/public/window.svg deleted file mode 100644 index b2b2a44..0000000 --- a/public/window.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/app/(pages)/layout.tsx b/src/app/(pages)/layout.tsx index 49539ae..4817016 100644 --- a/src/app/(pages)/layout.tsx +++ b/src/app/(pages)/layout.tsx @@ -8,7 +8,9 @@ const Layout: React.FC = ({ children }) => { return ( <>
- {children} +
+ {children} +
); }; diff --git a/src/app/(pages)/page.tsx b/src/app/(pages)/page.tsx index 0c490ee..7c2e805 100644 --- a/src/app/(pages)/page.tsx +++ b/src/app/(pages)/page.tsx @@ -1,8 +1,27 @@ -import Image from "next/image"; import { NextPage } from "next"; +import Image from "next/image"; const Home: NextPage = () => { - return

hello

; + return ( + <> +
+ icon +
+

こんにちは!

+

+ はじめまして、tuna2134です。サーバーをいじったりするのが楽しいと思っている人間です! +

+
+
+

hello

+ + ); }; export default Home; diff --git a/src/components/Header.tsx b/src/components/Header.tsx index a2b0876..9052efd 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,8 +1,10 @@ const Header: React.FC = () => { return (
- tuna2134の休憩

tuna2134

+ + tuna2134の個人的な憩いの場 +
); };