Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ridhozhr10 committed May 13, 2024
1 parent 75cd580 commit 128817a
Show file tree
Hide file tree
Showing 19 changed files with 136 additions and 5 deletions.
3 changes: 3 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
images: {
unoptimized: true
},
reactStrictMode: true
};

Expand Down
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/img/smug.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
4 changes: 1 addition & 3 deletions src/app/_components/layout/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ import style from "./style.module.scss";

const menuList = [
{ label: "About", href: "/about" },
{ label: "Posts", href: "/posts" },
{ label: "CV", href: "/cv" },
{ label: "Posts", href: "/post" },
{ label: "Projekte", href: "/projekte" },
{ label: "Publikationen", href: "/publikationen" },
];

const Logo = ({ text }: { text?: string }) => (
Expand Down
15 changes: 15 additions & 0 deletions src/app/about/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import BaseLayout from "../_components/layout/BaseLayout";

export const metadata = {
title: "About :: Ridho Azhar",
};

export default function About() {
return (
<BaseLayout>
<main>
<h1 className="text-5xl">Coming Soon</h1>
</main>
</BaseLayout>
);
}
15 changes: 15 additions & 0 deletions src/app/cv/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import BaseLayout from "../_components/layout/BaseLayout";

export const metadata = {
title: "CV :: Ridho Azhar",
};

export default function CV() {
return (
<BaseLayout>
<main>
<h1 className="text-5xl">Coming Soon</h1>
</main>
</BaseLayout>
);
}
Binary file removed src/app/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const inter = Inter({

export const metadata: Metadata = {
description:
"software developer, developing web professionally, like to play and make games",
"software developer in general, developing web professionally, like to play and make games, self proclaimed friendly person (trust me)",
};

export default function RootLayout({
Expand Down
4 changes: 4 additions & 0 deletions src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import Link from "next/link";
import BaseLayout from "./_components/layout/BaseLayout";

export const metadata = {
title: "> $ exit code 1.",
};

export default function NotFound() {
return (
<BaseLayout logoText="$ exit code 1.">
Expand Down
41 changes: 40 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import Image from "next/image";
import BaseLayout from "./_components/layout/BaseLayout";
import { BiEnvelope, BiLogoGithub, BiLogoLinkedinSquare } from "react-icons/bi";

export const metadata = {
title: "Ridho Azhar",
Expand All @@ -7,7 +9,44 @@ export const metadata = {
export default function Home() {
return (
<BaseLayout>
<main>content</main>
<main>
<div>
<Image
src="/img/smug.png"
width={125}
height={125}
alt="current favorite picture"
className="rounded-full mx-auto"
/>
<h1 className="text-5xl mt-8 mb-2 font-bold">Ridho Azhar</h1>
<p className="text-lg mb-2">
I like playing, using and commanding computer.
</p>
<div className="text-5xl flex gap-2 justify-center">
<a
href="mailto:[email protected]"
target="_blank"
rel="me noopener"
>
<BiEnvelope />
</a>
<a
href="https://www.linkedin.com/in/ridhozhr10/"
target="_blank"
rel="me noopener"
>
<BiLogoLinkedinSquare />
</a>
<a
href="https://github.com/ridhozhr10"
target="_blank"
rel="me noopener"
>
<BiLogoGithub />
</a>
</div>
</div>
</main>
</BaseLayout>
);
}
15 changes: 15 additions & 0 deletions src/app/posts/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import BaseLayout from "../_components/layout/BaseLayout";

export const metadata = {
title: "Posts :: Ridho Azhar",
};

export default function Posts() {
return (
<BaseLayout>
<main>
<h1 className="text-5xl">Coming Soon</h1>
</main>
</BaseLayout>
);
}

0 comments on commit 128817a

Please sign in to comment.