
We aim to create an accessible space tourism and logistics platform, which can sustain itself using resources found in the Trans Neptunian Spaceway (Methane, water and nitrogen).
Liquified Methane can be used as rocket fuel, powering our galactic trips and our facilities. Water can be used to create Oxygen with the help of Electrolysis.
We provide our Business Partners with facilities such as: Laboratories, Telescopes and Logistics services for transportation of their Methane extraction facilities or other investment options.
For tourism we plan to organize trips to the inner edge of the Kuiper Belt, Pluto, Makemake and other Dwarf Planets. For protection we will use protection equipment made from Graphene.
Promoting our company will be made through our site and using social media. Our target audience are current millenials, which will reach an age of ~50 years old. Registering now will save you an early spot on our first leave and keep you up-to-date with progress on Griffin Spaceway.
All information will pe posted on the site, giving you full perspective of things before making your decision.
Hardships that we’ve encountered and how we’ve solved them:
1. Why go to space when you can simulate this experience using VR?
A: You might be able to simulate it, but the real benefit of having a way of getting beyond Neptune opens up loads of opportunities such as observation and experimentation with space. Being able to have a “forward base” increases the range of rockets with over 30AU and using Methane, they can go even further.
2. What about safety during our trips?
A: We provide training and safety equipment especially developed for the conditions of outer space, this and help from our trained professionals guarantees your safety during our galactic exploration trips.
We've built a locally hosted site, the front-end was developed using RECT JS and the back-end was developed using EXPRESS JS.
<Snippets of code that was used>
-back end (get user profile data)
app.get('/profile/:id', (req, res) => { const { id } = req.params; db.select('*').from('users').where({id}) .then(user => { if (user.length) { res.json(user[0]) } else { res.status(400).json('Not found') } }) .catch(err => res.status(400).json('error getting user'))})
-front end (render method)
render() { const { isSignedIn, route, user } = this.state; return ( <div className="App"> <Particles className='particles' params={particlesOptions} /> <Navigation isSignedIn={isSignedIn} onRouteChange={this.onRouteChange} user={user}/> { route === 'home' ? <div> <Logo /> <ChoseCategory onRouteChange={this.onRouteChange} /> </div> : route === 'signin' ? <Signin loadUser={this.loadUser} onRouteChange={this.onRouteChange}/> : route === 'signout' ? <Signin loadUser={this.loadUser} onRouteChange={this.onRouteChange}/> : route === 'register' ? <Register loadUser={this.loadUser} onRouteChange={this.onRouteChange}/> : route === 'consumerCategory' ? <ConsumerCategory onRouteChange={this.onRouteChange}/> : route === 'businessCategory' ? <BusinessCategory onRouteChange={this.onRouteChange}/> : <div> </div> } </div> ); }
github:
front-end:https://github.com/RobertNedelcu/space-app-front.git