Skip to content

Commit

Permalink
Added Morgan Lab url
Browse files Browse the repository at this point in the history
  • Loading branch information
hariesramdhani committed Oct 31, 2024
1 parent e50d961 commit 0f07ad5
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,18 @@ import { GoogleAnalytics } from "@next/third-parties/google";

import SocialMediaButton from "../components/SocialMediaButton";

import { links } from '../data/links';
import { links } from "../data/links";

interface RootLayoutProps {
children: ReactNode;
}


const hubballi = Hubballi({
weight: ["400"],
subsets: ["latin"],
});

export default function RootLayout({ children }: RootLayoutProps) {

return (
<html lang="en">
<body className={`${hubballi.className}`}>
Expand All @@ -30,7 +28,7 @@ export default function RootLayout({ children }: RootLayoutProps) {
src="/img/github_photo.png"
width={400}
height={419}
alt="Haries&apos; Profile Picture"
alt="Haries' Profile Picture"
style={{ borderRadius: "50%" }}
/>
<div className="flex flex-col">
Expand All @@ -53,9 +51,16 @@ export default function RootLayout({ children }: RootLayoutProps) {
style={{ fontSize: 24 }}
className="leading-7 text-justify"
>
I am a second-year PhD Student in Medical Sciences at
the Institute of Medical Sciences, University of
Aberdeen in Morgan Lab, supervised by{" "}
I am a second-year PhD Student in Medical Sciences
at the Institute of Medical Sciences, University of
Aberdeen in{" "}
<Link
href="https://www.morganlab.co.uk/"
className="text-indigo-400"
>
Morgan Lab
</Link>
, supervised by{" "}
<Link
href="https://www.abdn.ac.uk/people/michael.morgan"
className="text-indigo-400"
Expand Down Expand Up @@ -153,7 +158,7 @@ export default function RootLayout({ children }: RootLayoutProps) {
</div>

<div className="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-x-10 gap-y-4">
{children}
{children}
</div>
</div>
<div className="max-w-screen-xl w-full flex flex-col items-center gap-x-5 mt-12 mx-auto px-5">
Expand Down

0 comments on commit 0f07ad5

Please sign in to comment.