Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 268b617

Browse files
committed
Update Layout structure
1 parent 22bfaa2 commit 268b617

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/layout/Page/index.tsx renamed to frontend/src/layout/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Box, Flex, Image, Stack, Text, useColorMode } from '@chakra-ui/react';
22
import React from 'react';
33
import Marquee from 'react-fast-marquee';
4-
import Header from '../../Components/Header';
4+
import Header from '../Components/Header';
55

66
function Page({ children }: { children?: object }) {
77
const { colorMode } = useColorMode();

frontend/src/pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import PlausibleProvider from 'next-plausible';
77
import { AppProps } from 'next/app';
88
import Head from 'next/head';
99
import React, { ReactNode } from 'react';
10-
import Page from '../layout/Page';
10+
import Page from '../layout';
1111
import '../styles/globals.css';
1212
import { theme } from '../theme';
1313
import { DEVELOPER_DAO_WEBSITE } from '../utils/DeveloperDaoConstants';

0 commit comments

Comments
 (0)