src directory
parent
52a2c5f297
commit
259e687281
@ -1,5 +1,5 @@
|
||||
import Page from "@components/Page";
|
||||
import Layout from "@components/Layout";
|
||||
import Page from "src/components/Page";
|
||||
import Layout from "src/components/Layout";
|
||||
|
||||
const NotFound = () => (
|
||||
<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 "../styles/milligram.min.css";
|
||||
import "../styles/raleway.css";
|
||||
import "@styles/milligram.min.css";
|
||||
import "@styles/raleway.css";
|
||||
|
||||
import "../styles/sass/index.scss";
|
||||
import "@styles/sass/index.scss";
|
||||
|
||||
function App({ Component, pageProps }) {
|
||||
return (
|
@ -1,6 +1,6 @@
|
||||
import Page from "@components/Page";
|
||||
import { Component } from "react";
|
||||
import Layout from "@components/Layout";
|
||||
import { Component } from "react";
|
||||
|
||||
class Binas extends Component {
|
||||
links: string[];
|
@ -1,5 +1,5 @@
|
||||
import Page from "@components/Page";
|
||||
import Layout from "@components/Layout";
|
||||
import Page from "src/components/Page";
|
||||
import Layout from "src/components/Layout";
|
||||
|
||||
const Thanks = () => (
|
||||
<Page title="Thanks!" description="Thanks for submitting your contact form!">
|
Loading…
Reference in new issue