---
// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: 2025 Fideus Labs LLC

// This is now a simple wrapper around BasePage for backward compatibility
import BasePage from './BasePage.astro';

interface Props {
	title?: string;
	description?: string;
	theme?: 'default' | 'awesome';
	colorScheme?: 'light' | 'dark' | 'auto';
}

const { title = "MyST Awesomeness", ...rest } = Astro.props;
---

<BasePage title={title} {...rest}>
	<slot />
</BasePage>
