Skip to content

Commit

Permalink
Content updates
Browse files Browse the repository at this point in the history
  • Loading branch information
glesage committed Jul 17, 2023
1 parent ffedcc3 commit 2c93ae2
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 75 deletions.
35 changes: 3 additions & 32 deletions admin/README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,5 @@
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
# Admin platform

## Getting Started
The portal to create and manage services to be used on Frodo nodes

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
Dev with `yarn dev`
2 changes: 1 addition & 1 deletion admin/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
remotePatterns: [
{
protocol: 'https',
hostname: 'img.freepik.com',
hostname: 'funko.com',
port: '',
},
],
Expand Down
23 changes: 11 additions & 12 deletions admin/src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import styles from './layout.module.css'
import utilStyles from '../styles/utils.module.css'
import Link from 'next/link'

const name = '[Your Name]'
export const siteTitle = 'Next.js Sample Website'
export const siteTitle = 'Frodo Admin Portal'
const siteName = 'One platform to rule them all'
const logoImageUrl = 'https://funko.com/dw/image/v2/BGTS_PRD/on/demandware.static/-/Sites-funko-master-catalog/default/dw250569fc/images/funko/13551-PX-1TM-1.png?sw=800&sh=800'

export default function Layout({
children,
Expand All @@ -20,13 +21,11 @@ export default function Layout({
<link rel="icon" href="/favicon.ico" />
<meta
name="description"
content="Learn how to build a personal website using Next.js"
content={siteName}
/>
<meta
property="og:image"
content={`https://og-image.vercel.app/${encodeURI(
siteTitle
)}.png?theme=light&md=0&fontSize=75px&images=https%3A%2F%2Fassets.zeit.co%2Fimage%2Fupload%2Ffront%2Fassets%2Fdesign%2Fnextjs-black-logo.svg`}
content={logoImageUrl}
/>
<meta name="og:title" content={siteTitle} />
<meta name="twitter:card" content="summary_large_image" />
Expand All @@ -36,29 +35,29 @@ export default function Layout({
<>
<Image
priority
src="https://img.freepik.com/vecteurs-libre/vecteur-degrade-logo-colore-oiseau_343694-1365.jpg"
src={logoImageUrl}
className={utilStyles.borderCircle}
height={144}
width={144}
alt={name}
alt={siteName}
/>
<h1 className={utilStyles.heading2Xl}>{name}</h1>
<h1 className={utilStyles.heading2Xl}>{siteName}</h1>
</>
) : (
<>
<Link href="/">
<Image
priority
src="https://img.freepik.com/vecteurs-libre/vecteur-degrade-logo-colore-oiseau_343694-1365.jpg"
src={logoImageUrl}
className={utilStyles.borderCircle}
height={108}
width={108}
alt={name}
alt={siteName}
/>
</Link>
<h2 className={utilStyles.headingLg}>
<Link href="/" className={utilStyles.colorInherit}>
{name}
{siteName}
</Link>
</h2>
</>
Expand Down
12 changes: 12 additions & 0 deletions admin/src/posts/frodo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: 'What is Frodo'
date: '2022-09-01'
---

**Mission**: Enabling tech to seamlessly fulfill our needs, without any sacrifices

**Vision**: Connect people to apps and services, without downloads or signups, and enable everyone to control and monetize their data

Permettre l'access aux services instantanément, avec un compte unique et tout en en gardant le contrôle de ses données

The Appstore 2.0, all services under one app. Think of WeChat in China, but open source, public and where data is not stored in the cloud
11 changes: 0 additions & 11 deletions admin/src/posts/pre-rendering.md

This file was deleted.

12 changes: 12 additions & 0 deletions admin/src/posts/sam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: 'What is SAM'
date: '2023-07-17'
---

Enable everyone to use services without app downloads, signups, logins. Securing their data on device, never compromised in a cloud.
* By services I mean things like the next Uber or Deliveroo or AirBnb.. wtv business comes along
* Think of it as the App Store 2.0, like WeChat but open, public and decentralized

Anecdotally, I’m working on all the components to make this work as open source projects for a few reasons, 1 is trust because anyone can look at the code, 2 is because I believe this technology is democratizing and will enable the world to overcome all the grifting that companies do today like taking transaction fees on any and all interactions with services…

The reason why I say AppStore 2.0 also is because this project would be a new form of development platform, where devs can contribute code to the application directly and get paid through the platform, taking on the reverse approach than Apple where they distribute fees to devs and take a cut, here the people who pay for services give a fee directly to the developers that built it.
19 changes: 0 additions & 19 deletions admin/src/posts/ssg-ssr.md

This file was deleted.

0 comments on commit 2c93ae2

Please sign in to comment.