Skip to content

Commit

Permalink
Merge pull request midday-ai#167 from midday-ai/feature/local-develop…
Browse files Browse the repository at this point in the history
…ment-v1

Public beta
  • Loading branch information
pontusab authored Jun 24, 2024
2 parents 48676e8 + ebd3400 commit de62033
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 33 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
name: CI
env:
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_SECRET: ${{ secrets.GOOGLE_SECRET_WEBSITE }}
# name: CI
# env:
# GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
# GOOGLE_SECRET: ${{ secrets.GOOGLE_SECRET_WEBSITE }}

# on:
# pull_request:
# workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/api
# jobs:
# test:
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: apps/api

steps:
- uses: actions/checkout@v3
- uses: supabase/setup-cli@v1
with:
version: latest
- name: Start Supabase local development setup
run: supabase db start
- name: Verify generated types are checked in
run: |
supabase gen types typescript --local > types.gen.ts
if ! git diff --ignore-space-at-eol --exit-code --quiet types.gen.ts; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
# steps:
# - uses: actions/checkout@v3
# - uses: supabase/setup-cli@v1
# with:
# version: latest
# - name: Start Supabase local development setup
# run: supabase db start
# - name: Verify generated types are checked in
# run: |
# supabase gen types typescript --local > types.gen.ts
# if ! git diff --ignore-space-at-eol --exit-code --quiet types.gen.ts; then
# echo "Detected uncommitted changes after build. See status below:"
# git diff
# exit 1
# fi
Binary file added apps/website/public/images/public-beta.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions apps/website/src/app/pricing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function Page() {

<div className="flex items-center flex-col text-center relative">
<div className="mt-12 mb-12" />
<p className="text-xl mt-4">Claim $30/mo deal</p>
<p className="text-xl mt-4">Claim $49/mo deal</p>

<div className="mt-8">
<div className="flex items-center space-x-4">
Expand All @@ -46,7 +46,7 @@ export default function Page() {
rel="noreferrer"
href="https://app.midday.ai"
>
<Button className="h-12 px-5">Get Early Access</Button>
<Button className="h-12 px-5">Get Started</Button>
</a>
</div>
</div>
Expand Down
40 changes: 40 additions & 0 deletions apps/website/src/app/updates/posts/public-beta.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
title: "Announcing Public Beta"
publishedAt: "2024-06-24"
summary: ""
image: "/images/public-beta.jpg"
tag: "Updates"
---

For the past three months, we have been working hard in private beta with our customers. Today, we are excited to announce our public beta.

<br />

Both Viktor and I want to personally thank all of you who have given us feedback, attended meetings, and supported us during this time. We are super excited to continue our journey together to make Midday the best all-in-one tool for running our business smarter.

<br />

As we enter our public beta, new customers will have access to a special deal of $49/month, but it will be free during the beta period.

<br />
### Roadmap

We aim to have Midday `v1` ready in October, which is also when we will start charging for the service.

<br />
Until then, here are our focus areas:

- **Invoicing** - Deliver the first version of our invoicing service
- **Budget** - Add support for budgeting
- **Apps & Integrations** - Integrate with Xero, Fortnox, and QuickBooks
- **Bug Fixes & Improvements** - General improvements to the platform

<br />
### ProductHunt

Along with this milestone, we are launching on Product Hunt on Wednesday, June 26 (12:00 am PST). We would love to have your support by voting for us. [You can subscribe for a notification here](https://go.midday.ai/htI3aDs).

<br />
### Get started

Now that Middays is in public beta, feel free to try us out by [signing in here](https://app.midday.ai).
2 changes: 1 addition & 1 deletion apps/website/src/components/footer-cta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function FooterCTA() {

<a href="https://app.midday.ai">
<Button className="h-12 px-5 bg-white text-black hover:bg-white/80">
Get Early Access
Get Started
</Button>
</a>
</div>
Expand Down
8 changes: 3 additions & 5 deletions apps/website/src/components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,12 @@ export function Hero() {
}}
>
<div className="hero-slide-up flex flex-col mt-[240px]">
<Link href="/updates/assistant">
<Link href="/updates/public-beta">
<Button
variant="outline"
className="rounded-full border-border flex space-x-2 items-center"
>
<span className="font-mono text-xs">
Introducing Midday Assistant
</span>
<span className="font-mono text-xs">Announcing Public Beta</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width={12}
Expand Down Expand Up @@ -79,7 +77,7 @@ export function Hero() {
</Link>

<a href="https://app.midday.ai">
<Button className="h-12 px-5">Get Early Access</Button>
<Button className="h-12 px-5">Get Started</Button>
</a>
</div>
</div>
Expand Down

0 comments on commit de62033

Please sign in to comment.