mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-26 01:20:08 +00:00
29 lines
607 B
TypeScript
29 lines
607 B
TypeScript
![]() |
import * as React from "react";
|
||
|
import Layout from "../components/layout";
|
||
|
import { graphql } from "gatsby";
|
||
|
import GalleryManager from "../components/views/gallery/manager";
|
||
|
|
||
|
// markup
|
||
|
const GalleryPage = ({ data }: any) => {
|
||
|
return (
|
||
|
<Layout meta={data.site.siteMetadata} title="Home" link={"/gallery"}>
|
||
|
<main style={{ height: "100%" }} className=" h-full ">
|
||
|
<GalleryManager />
|
||
|
</main>
|
||
|
</Layout>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export const query = graphql`
|
||
|
query HomePageQuery {
|
||
|
site {
|
||
|
siteMetadata {
|
||
|
description
|
||
|
title
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default GalleryPage;
|