import * as React from "react"; import Layout from "../components/layout"; import { graphql } from "gatsby"; import { TriangleAlertIcon } from "lucide-react"; // markup const SettingsPage = ({ data }: any) => { return (
Settings
{" "} Work in progress ..
); }; export const query = graphql` query HomePageQuery { site { siteMetadata { description title } } } `; export default SettingsPage;