Landing page and navigation bar

This commit is contained in:
Alexander Bell 2024-07-02 01:26:51 +02:00
parent 6f8fed1a36
commit 1432c93d32
20 changed files with 16241 additions and 2 deletions

20
.gitignore vendored Normal file
View File

@ -0,0 +1,20 @@
# Dependencies
/node_modules
# Production
/build
# Generated files
.docusaurus
.cache-loader
# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

View File

@ -1,2 +1,41 @@
# survival-pi-docs # Survival-Pi Minecraft SMP official website
Website and documentation of the Survival-Pi Minecraft SMP
This is the documention and blog website of the Minecraft server Survival-Pi. If you're a member of the community and want to add a blog post or information to the docs, let any admin of the server know. The docs explain how to create and submit a blog post in detail.
### Installation
```
$ yarn
```
### Local Development
```
$ yarn start
```
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
### Build
```
$ yarn build
```
This command generates static content into the `build` directory and can be served using any static contents hosting service.
### Deployment
Using SSH:
```
$ USE_SSH=true yarn deploy
```
Not using SSH:
```
$ GIT_USER=<Your GitHub username> yarn deploy
```
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

3
babel.config.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};

View File

@ -0,0 +1,7 @@
---
sidebar_position: 1
---
# About
Coming Soon!

7
docs/season1/season1.md Normal file
View File

@ -0,0 +1,7 @@
---
sidebar_position: 1
---
# Season 1
Coming soon!

7
docs/season2/season2.md Normal file
View File

@ -0,0 +1,7 @@
---
sidebar_position: 1
---
# Season 2
Coming soon!

162
docusaurus.config.js Normal file
View File

@ -0,0 +1,162 @@
// @ts-check
// `@type` JSDoc annotations allow editor autocompletion and type checking
// (when paired with `@ts-check`).
// There are various equivalent ways to declare your Docusaurus config.
// See: https://docusaurus.io/docs/api/docusaurus-config
import {themes as prismThemes} from 'prism-react-renderer';
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Survival-Pi',
tagline: 'Whitelisted Semi-Vanilla SMP',
favicon: 'img/logo.ico',
// Set the production url of your site here
url: 'https://survival-pi.com',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'aleabodo', // Usually your GitHub org/user name.
projectName: 'survival-pi-docs', // Usually your repo name.
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: './sidebars.js',
},
blog: {
showReadingTime: true
},
theme: {
customCss: './src/css/custom.css',
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
colorMode: {
defaultMode: 'light',
disableSwitch: true,
respectPrefersColorScheme: false,
},
navbar: {
title: 'Survival-Pi SMP',
logo: {
alt: 'Survival-Pi Logo',
src: 'img/logo.png',
},
items: [
{
type: 'docSidebar',
sidebarId: 'documentationSidebar',
position: 'left',
label: 'Docs',
},
{
type: 'docSidebar',
sidebarId: 'season1Sidebar',
position: 'left',
label: 'Season 1',
},
{
type: 'docSidebar',
sidebarId: 'season2Sidebar',
position: 'left',
label: 'Season 2',
},
{
href: 'https://survival-pi.tebex.io/',
label: 'Donate',
position: 'right',
},
{
href: 'https://map.survival-pi.com/',
label: 'Map:SMP',
position: 'left',
},
{
href: 'https://cmap.survival-pi.com/',
label: 'Map:Creative',
position: 'left',
},
{
href: 'https://github.com/aleabodo/survival-pi-docs',
label: 'GitHub',
position: 'right',
},
]
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'About the server',
to: '/docs/about',
},
{
label: 'Tutorials',
to: '/docs/about',
}
],
},
{
title: 'Community',
items: [
{
label: 'Tebex Store',
href: 'https://survival-pi.tebex.io/',
},
{
label: 'Discord',
href: 'https://discord.gg/WKAtDzEu24',
},
{
label: 'Planetminecraft',
href: 'https://www.planetminecraft.com/server/survival-pi-smp/',
},
],
},
{
title: 'More',
items: [
{
label: 'GitHub',
href: 'https://github.com/aleabodo/survival-pi-docs',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Survival-Pi community members.`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
}),
};
export default config;

15725
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

44
package.json Normal file
View File

@ -0,0 +1,44 @@
{
"name": "survival-pi-docs",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "3.4.0",
"@docusaurus/preset-classic": "3.4.0",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.4.0",
"@docusaurus/types": "3.4.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
}
}

34
sidebars.js Normal file
View File

@ -0,0 +1,34 @@
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
documentationSidebar: [{type: 'autogenerated', dirName: 'documentation'}],
season1Sidebar: [{type: 'autogenerated', dirName: 'season1'}],
season2Sidebar: [{type: 'autogenerated', dirName: 'season2'}],
// But you can create a sidebar manually
/*
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
*/
};
export default sidebars;

View File

@ -0,0 +1,79 @@
import clsx from 'clsx';
import Heading from '@theme/Heading';
import styles from './styles.module.css';
const FeatureList = [
{
title: 'No plot claiming!',
Img: require('@site/static/img/noclaiming.jpg').default,
description: (
<>
Tired of random players griefing
your beautiful castle but don't want to be restricted to a claimed plot?
We are a <span style={{fontWeight:"bold"}}> whitelisted community </span> and trust each other.
Therefore, we <span style={{fontWeight:"bold"}}> don't need any plot claiming system </span> and
you can build whereever you want, even Spawn itself! But for your ease of mind, our
plugins <span style={{fontWeight:"bold"}}> can rollback ANY malicious interaction
in the world</span>.
We never had any game-breaking incident that
our experienced admins couldn't resolve in over 3 years running the server!
</>
),
},
{
title: 'Small and friendly community!',
Img: require('@site/static/img/logo.png').default,
description: (
<>
We are a <span style={{fontWeight:"bold"}}> small community of friends</span> that enjoy
building epic based and creative Redstone contraptions.
<span style={{fontWeight:"bold"}}> Some of us play over 3 years together </span>
on this server and we've become good friends through joint adventures and building
projects. We're happy to invite new players to the community too. If you're
<span style={{fontWeight:"bold"}}> above age 15 </span> and
reasonably <span style={{fontWeight:"bold"}}> mature </span> feel free to apply on our Discord! See you soon!
</>
),
},
{
title: 'Relaxed building, no PvP!',
Img: require('@site/static/img/nopvp.jpg').default,
description: (
<>
We're <span style={{fontWeight:"bold"}}> here to build amazing bases together and prefer a rather relaxed
playing experience</span>. But if you need to flex some muscles with your friends you can do
that of course. However, if you want to continue with your base uninteruptedly,
you <span style={{fontWeight:"bold"}}> can toggle PvP off </span> with just a
single command!
</>
),
},
];
function Feature({Img, title, description}) {
return (
<div className={clsx('col col--4')}>
<div className="text--center">
<img src={Img} className={styles.featureImg} alt={title} />
</div>
<div className="text--center padding-horiz--md">
<Heading as="h3">{title}</Heading>
<p>{description}</p>
</div>
</div>
);
}
export default function HomepageFeatures() {
return (
<section className={styles.features}>
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}

View File

@ -0,0 +1,11 @@
.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}
.featureSvg {
height: 200px;
width: 200px;
}

30
src/css/custom.css Normal file
View File

@ -0,0 +1,30 @@
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #84262B;
--ifm-color-primary-dark: #6b1d21;
--ifm-color-primary-darker: #631a1e;
--ifm-color-primary-darkest: #421113;
--ifm-color-primary-light: #eba07f;
--ifm-color-primary-lighter: #e9b7a2;
--ifm-color-primary-lightest: #EDD1C5;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #ce3b42;
--ifm-color-primary-dark: #bb353b;
--ifm-color-primary-darker: #9b2a2f;
--ifm-color-primary-darkest: #742024;
--ifm-color-primary-light: #eba07f;
--ifm-color-primary-lighter: #e9b7a2;
--ifm-color-primary-lightest: #EDD1C5;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}

48
src/pages/index.js Normal file
View File

@ -0,0 +1,48 @@
import clsx from 'clsx';
import Link from '@docusaurus/Link';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import Layout from '@theme/Layout';
import HomepageFeatures from '@site/src/components/HomepageFeatures';
import Heading from '@theme/Heading';
import styles from './index.module.css';
function HomepageHeader() {
const {siteConfig} = useDocusaurusContext();
return (
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<Heading as="h1" className="hero__title">
{siteConfig.title}
</Heading>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
to="/docs/documentation/about">
About the server
</Link> &emsp;&emsp;
<Link
className="button button--secondary button--lg"
to="https://discord.gg/dTWRHbkfvV">
Join the community 📩
</Link>
</div>
</div>
</header>
);
}
export default function Home() {
const {siteConfig} = useDocusaurusContext();
return (
<Layout
title={`${siteConfig.title}`}
>
<HomepageHeader />
<main>
<HomepageFeatures />
</main>
</Layout>
);
}

View File

@ -0,0 +1,23 @@
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
}

0
static/.nojekyll Normal file
View File

BIN
static/img/logo.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

BIN
static/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 KiB

BIN
static/img/noclaiming.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

BIN
static/img/nopvp.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB