personal-site/src/constants/routes.js

30 lines
648 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//export const ct = "ct"
import BlogPage from "../components/pages/blog";
import PortfolioPage from "../components/pages/portfolio";
import HomePage from "../components/pages/homepage";
import { DEFAULT_DOMAIN } from "../constants/link-types";
const pages = [
{
name: DEFAULT_DOMAIN,
src: "/",
quote: "O. Georges site",
page: HomePage,
},
{
name: "portfolio",
src: "/portfolio",
page: PortfolioPage,
},
{
name: "blog",
src: "/blog",
page: BlogPage,
quote: "Articles, ideas and thoughts from O. George",
},
];
export const SET_CURRENT_PAGE = "SET_CURRENT_PAGE";
export default pages;