Skip to content

Commit

Permalink
initial push
Browse files Browse the repository at this point in the history
  • Loading branch information
brokenrockstudios committed Jul 22, 2023
0 parents commit e033332
Show file tree
Hide file tree
Showing 30 changed files with 22,320 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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*
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Website

This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.

### 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 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
Binary file added blog/2023-07-21-frog-of-war-dev-update-1/fow2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions blog/2023-07-21-frog-of-war-dev-update-1/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
slug: frog-of-war-dev-update-1
title: 'Frog of War: Dev Update 1'
authors: [namrog84]
tags: [frog, game, dev]
---

Welcome to the latest update from our studio! We're excited to introduce you to our project, "**Frog of War**," a thrilling multiplayer experience set in a world of amphibious warfare. Developed using the cutting-edge [Unreal Engine 5](https://www.unrealengine.com/en-US/unreal-engine-5), this game is a simple and modern take on multiplayer first-person shooters.

![fow2](./fow2.png)

Prepare yourselves for an action-packed adventure as we plunge you into the heart of the battle, taking on the persona of agile and fearless frogs. This isn't your typical first-person shooter; it's an entirely unique and captivating concept that will keep you hooked from the first leap!

As you dive into the game, you'll be able to choose from a variety of game modes that cater to different playstyles. Engage in intense deathmatches where reflexes and precision are your best allies, or opt for the adrenaline-pumping excitement of our battle royale mode, where only the toughest amphibians will survive!

But that's not all; we have even more surprises in store! Our team has been hard at work crafting an array of innovative game modes that will challenge your strategy, teamwork, and skills. Whether you're a seasoned gamer or a newcomer to the battlefield, there's something here for everyone!

As we continue developing "Frog of War," we remain committed to delivering a fun, polished, and enjoyable experience for all our players. We're eagerly anticipating the day when you can join us in this incredible adventure and experience firsthand the excitement, camaraderie, and fierce competition that awaits in our frog-filled universe.

Stay tuned for more updates, as we'll be sharing behind-the-scenes peeks, gameplay teasers, and further announcements on our journey to release! Thank you for your support, and we can't wait to hop into action with you in "Frog of War!"
5 changes: 5 additions & 0 deletions blog/authors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
namrog84:
name: namrog84
title: Developer
url: https://github.com/namrog84
image_url: https://github.com/namrog84.png
120 changes: 120 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion

const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');

/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Broken Rock Studios',
tagline: 'Multiplayer and Fun',
favicon: 'img/favicon.ico',

// Set the production url of your site here
url: 'https://brokenrockstudios.com',
baseUrl: '/',
organizationName: 'brokenrockstudios',
projectName: 'website',
deploymentBranch: 'gh-pages',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',

i18n: {
defaultLocale: 'en',
locales: ['en'],
},

presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
path: 'media',
routeBasePath: 'media',
sidebarCollapsible: true,
},
blog: {
routeBasePath: '/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
}),
],
],

themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
title: 'Broken Rock Studios',
logo: {
alt: 'Broken Rock Studios Logo',
src: 'img/logo.svg',
className: 'navbar-logo',
},
hideOnScroll: true,
items: [
{
type: 'docSidebar',
sidebarId: 'mediaSidebar',
position: 'left',
label: 'Media',
},
{to: 'https://www.fangamer.com/', label: 'Store', position: 'left'},
{to: '/about', label: 'About', position: 'left'},
{
href: 'https://store.steampowered.com',
label: 'Buy Frog of War',
position: 'right',
class: 'header-fow-link',
},
],
},
colorMode: {
defaultMode: 'dark',
disableSwitch: true,
respectPrefersColorScheme: false,
},
footer: {
style: 'dark',
links: [
{
title: 'Community',
items: [
{
label: 'Steam',
href: 'https://store.steampowered.com',
},
{
label: 'Discord',
href: 'https://discord.gg/sqt6n7Z5xu',
},
{
label: 'Reddit',
href: 'https://www.reddit.com/r/BrokenRockStudios/',
},
],
},
{
title: 'More',
items: [
{
label: 'News',
to: '/',
},
],
},
],
copyright: `Copyright © Broken Rock Studios, LLC ${new Date().getFullYear()}. All rights reserved.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
}),
};

module.exports = config;
5 changes: 5 additions & 0 deletions media/concept.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
sidebar_position: 4
---

# Concept Art
Binary file added media/img/fow1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/img/fow3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions media/music.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
sidebar_position: 3
---

# Music
11 changes: 11 additions & 0 deletions media/screenshots.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
sidebar_position: 1
---

# Screenshots


![fow1](./img/fow1.png)


![fow2](./img/fow3.png)
17 changes: 17 additions & 0 deletions media/videos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
sidebar_position: 2
---

# Videos

<iframe width="1024" height="768" src="https://www.youtube-nocookie.com/embed/h7J4A8OGQQc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

<iframe width="1024" height="768" src="https://www.youtube-nocookie.com/embed/NMzGZXuK0qU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

<iframe width="1024" height="768" src="https://www.youtube-nocookie.com/embed/cpwfwe-dG_U" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

<iframe width="1024" height="768" src="https://www.youtube-nocookie.com/embed/GaIPCH845qE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

<iframe width="1024" height="768" src="https://www.youtube-nocookie.com/embed/KKsEIiN9R0Q" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>


Loading

0 comments on commit e033332

Please sign in to comment.