Skip to content

Commit

Permalink
add header
Browse files Browse the repository at this point in the history
  • Loading branch information
Sianao committed Nov 25, 2024
1 parent 8f187d4 commit b7d7da4
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 31 deletions.
33 changes: 32 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"file-saver": "^2.0.5",
"next": "15.0.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106"
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
Expand Down
5 changes: 0 additions & 5 deletions src/pages/_app.tsx

This file was deleted.

14 changes: 0 additions & 14 deletions src/pages/_document.tsx

This file was deleted.

29 changes: 19 additions & 10 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,29 @@ import React from "react";

import CssBaseline from '@mui/material/CssBaseline';
import AppTheme from '../theme/AppTheme';
import Features from "../theme/Features";
import Features from "../theme/Features";
import Hero from '../theme/Hero';
import Footer from "../theme/Footer";


import Head from "next/head";
export default function Home() {
return (
<AppTheme >
<CssBaseline enableColorScheme />
<Hero />
<Features></Features>
<AppAppBar></AppAppBar>
<Footer></Footer>
</AppTheme>
<>
<Head>
<title>GitHub Proxy 代理加速
</title>
<meta name='description' content='Github Proxy Github 国内代理 GitHub 文件 , Releases , archive , gist , raw.githubusercontent.com 文件代理加速下载服务.' />
<meta name='keywords' content={`Github Proxy Github 国内代理 GitHub 文件 , Releases `} />

</Head>
<AppTheme >
<CssBaseline enableColorScheme />
<Hero />
<Features></Features>
<AppAppBar></AppAppBar>
<Footer></Footer>
</AppTheme>
</>

);
}

0 comments on commit b7d7da4

Please sign in to comment.