From 0a16f36b8afc23f335c1146d6ea53329f9e27df7 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Fri, 15 Mar 2024 18:01:48 +0100 Subject: Add landing page sections and update resume --- src/theme/Root.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/theme/Root.tsx (limited to 'src/theme/Root.tsx') diff --git a/src/theme/Root.tsx b/src/theme/Root.tsx new file mode 100644 index 0000000..9459e9f --- /dev/null +++ b/src/theme/Root.tsx @@ -0,0 +1,18 @@ +/* + * SPDX-FileCopyrightText: 2023 Kristóf Marussy + * + * SPDX-License-Identifier: MIT + */ + +import type { Props } from '@theme/Root'; +import Root from '@theme-original/Root'; + +import ActiveSectionProvider from '@site/src/components/ActiveSectionProvider'; + +export default function RootWrapper(props: Props) { + return ( + + + + ); +} -- cgit v1.2.3-54-g00ecf