Skip to content

Commit

Permalink
fix: missing description in home page
Browse files Browse the repository at this point in the history
  • Loading branch information
theaungmyatmoe committed Aug 17, 2023
1 parent a171be1 commit a2e600e
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 27 deletions.
45 changes: 23 additions & 22 deletions app/layout.jsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
import '@/styles/globals.css'
import {Header} from "@/components/Header";
import {Footer} from "@/components/Footer";
import {AnalyticsWrapper} from "@/components/AnalyticsWrapper";
import '@/styles/globals.css';
import { Header } from '@/components/Header';
import { Footer } from '@/components/Footer';
import { AnalyticsWrapper } from '@/components/AnalyticsWrapper';

export const metadata = {
title: 'Aung Myat Moe - Software Engineer, Founder and Open Source Enthusiast',
};

description:
'I’m Aung Myat Moe, a software engineer and founder based in Letpadan. I’m the founder of Myanmar Cyber Youths and Web Dev Environment, where we develop technologies that empower regular people to explore space on their own terms.'
};

export default async function RootLayout({children}) {
export default async function RootLayout({ children }) {
return (
<>
<html lang="en">
<head/>
<body className="flex h-full flex-col bg-zinc-50 dark:bg-black">
<div className="fixed inset-0 flex justify-center sm:px-8">
<div className="flex w-full max-w-7xl lg:px-8">
<div className="w-full bg-white ring-1 ring-zinc-100 dark:bg-zinc-900 dark:ring-zinc-300/20"/>
</div>
</div>
<div className="relative">
<Header/>
{children}
</div>
<Footer/>
<AnalyticsWrapper/>
</body>
<head />
<body className="flex h-full flex-col bg-zinc-50 dark:bg-black">
<div className="fixed inset-0 flex justify-center sm:px-8">
<div className="flex w-full max-w-7xl lg:px-8">
<div className="w-full bg-white ring-1 ring-zinc-100 dark:bg-zinc-900 dark:ring-zinc-300/20" />
</div>
</div>
<div className="relative">
<Header />
{children}
</div>
<Footer />
<AnalyticsWrapper />
</body>
</html>
</>
)
);
}
24 changes: 19 additions & 5 deletions app/uses/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ export default function Uses() {
>
<div className="space-y-20">
<ToolsSection title="Workstation">
<Tool title="14” Acer E14 Laptop">
I'm currently using an Intel-based 14” Acer Low End
Notebook, Rapoo wireless mouse which is my favorite
brand and integrated keyboard which comes with Acer.
<Tool title="13.3” Mac Book Pro">
I'm currently using an Mac Book Pro. I'm a huge fan
of Apple products. I love the way they design their
products and how they work.
</Tool>
</ToolsSection>
<ToolsSection title="Development tools">
<ToolsSection title="Software Development">
<Tool title="Jetbrains IDEs">
I'm a huge fan of Jetbrains products. They give me
an opportunity not to memorize language syntax and
Expand All @@ -67,6 +67,20 @@ export default function Uses() {
probably continue to be so for a long time.
</Tool>
</ToolsSection>
<ToolsSection title="Project Management">
<Tool title="Jira">
I love the way Jira works. It's a great tool for
project management and issue tracking.
</Tool>
</ToolsSection>
<ToolsSection title="Health Management">
<Tool title="Google Fit">
It enforce me to walk at least 5,000 steps a day. As
a developer, I spend most of my time sitting in
front of my computer. So, it's a great tool to keep
me healthy.
</Tool>
</ToolsSection>
</div>
</SimpleLayout>
</>
Expand Down

1 comment on commit a2e600e

@vercel
Copy link

@vercel vercel bot commented on a2e600e Aug 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.