2024-02-17 17:54:32 +00:00
|
|
|
export const siteTitle = "Digital Backroom - An Internet Archive";
|
2023-12-24 06:11:22 +00:00
|
|
|
export default function Layout({ children }) {
|
|
|
|
return (
|
2024-02-17 17:54:32 +00:00
|
|
|
<div>
|
|
|
|
<main>{children}</main>
|
2023-12-24 06:11:22 +00:00
|
|
|
</div>
|
2024-02-17 17:54:32 +00:00
|
|
|
);
|
2020-11-28 15:45:01 +00:00
|
|
|
}
|