src directory
parent
52a2c5f297
commit
259e687281
@ -1,5 +1,5 @@
|
|||||||
import Page from "@components/Page";
|
import Page from "src/components/Page";
|
||||||
import Layout from "@components/Layout";
|
import Layout from "src/components/Layout";
|
||||||
|
|
||||||
const NotFound = () => (
|
const NotFound = () => (
|
||||||
<Page title="Page not found" description="This page either doesn't exist or has been deleted">
|
<Page title="Page not found" description="This page either doesn't exist or has been deleted">
|
@ -1,9 +1,9 @@
|
|||||||
import { ThemeProvider } from "next-themes";
|
import { ThemeProvider } from "next-themes";
|
||||||
|
|
||||||
import "../styles/milligram.min.css";
|
import "@styles/milligram.min.css";
|
||||||
import "../styles/raleway.css";
|
import "@styles/raleway.css";
|
||||||
|
|
||||||
import "../styles/sass/index.scss";
|
import "@styles/sass/index.scss";
|
||||||
|
|
||||||
function App({ Component, pageProps }) {
|
function App({ Component, pageProps }) {
|
||||||
return (
|
return (
|
@ -1,6 +1,6 @@
|
|||||||
import Page from "@components/Page";
|
import Page from "@components/Page";
|
||||||
import { Component } from "react";
|
|
||||||
import Layout from "@components/Layout";
|
import Layout from "@components/Layout";
|
||||||
|
import { Component } from "react";
|
||||||
|
|
||||||
class Binas extends Component {
|
class Binas extends Component {
|
||||||
links: string[];
|
links: string[];
|
@ -1,5 +1,5 @@
|
|||||||
import Page from "@components/Page";
|
import Page from "src/components/Page";
|
||||||
import Layout from "@components/Layout";
|
import Layout from "src/components/Layout";
|
||||||
|
|
||||||
const Thanks = () => (
|
const Thanks = () => (
|
||||||
<Page title="Thanks!" description="Thanks for submitting your contact form!">
|
<Page title="Thanks!" description="Thanks for submitting your contact form!">
|
Loading…
Reference in new issue