Renamed Atlas to Outline
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
export default function subdomainRedirect(options) {
|
||||
return async function subdomainRedirectMiddleware(ctx, next) {
|
||||
if (ctx.headers.host === 'beautifulatlas.com') {
|
||||
if (ctx.headers.host === 'getoutline.com') {
|
||||
ctx.redirect(`https://www.${ctx.headers.host}${ctx.path}`);
|
||||
} else {
|
||||
return next();
|
||||
|
@ -11,7 +11,7 @@ export default function About() {
|
||||
<title>About</title>
|
||||
</Helmet>
|
||||
<Hero>
|
||||
<h1>About Atlas</h1>
|
||||
<h1>About Outline</h1>
|
||||
<p>
|
||||
Just a proof of concept for multiple pages.
|
||||
</p>
|
||||
|
@ -13,7 +13,7 @@ export default function Pricing() {
|
||||
<Hero>
|
||||
<h1>Pricing</h1>
|
||||
<p>
|
||||
Explore Atlas with a 14 day trial, free forever for teams smaller than 5.
|
||||
Explore Outline with a 14 day trial, free forever for teams smaller than 5.
|
||||
</p>
|
||||
</Hero>
|
||||
</Grid>
|
||||
|
@ -15,7 +15,7 @@ export default function Layout({ children }: Props) {
|
||||
<html lang="en">
|
||||
<head>
|
||||
<Helmet>
|
||||
<title>Atlas</title>
|
||||
<title>Outline</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
</Helmet>
|
||||
|
||||
|
@ -6,7 +6,7 @@ import { color } from '../../../shared/styles/constants';
|
||||
function Navigation() {
|
||||
return (
|
||||
<Nav>
|
||||
<Brand href="/">Atlas</Brand>
|
||||
<Brand href="/">Outline</Brand>
|
||||
<Menu>
|
||||
<MenuItem><a href="/auth/slack">Sign In</a></MenuItem>
|
||||
</Menu>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Atlas</title>
|
||||
<title>Outline</title>
|
||||
<link href="/static/styles.css" rel="stylesheet">
|
||||
</head>
|
||||
<style>
|
||||
@ -30,4 +30,4 @@
|
||||
<script src="/static/bundle.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
@ -2,7 +2,7 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Atlas</title>
|
||||
<title>Outline</title>
|
||||
<style>
|
||||
body,
|
||||
html {
|
||||
@ -28,4 +28,4 @@
|
||||
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-3.min.js" data-apikey="<%= BUGSNAG_KEY %>"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
Reference in New Issue
Block a user