Skip to content

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Mar 19, 2024
1 parent fe744fd commit 0b2ae80
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 29 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<p align="center">
<img width="150" height="150" src="/app-icon.png" alt="Logo">
<img src="https://beta.midday.ai/en/opengraph-image.png" alt="Logo">
</p>
<h1 align="center"><b>Midday</b></h1>
<p align="center">
Expand All @@ -15,9 +15,9 @@
</p>
</p>

# Roadmap
# Under active development

View what's currently in progress, and what's planned for the future: [Midday Roadmap](https://midday-ai.notion.site/86823a9c0e2d4da6976d499df27cdfe3)
> We have been working with Midday for the past 4 months and our philosophy has been "make it work, make it right". Currently, we're actively improving Midday's code quality and best practices. In the meantime, fasten your seatbelts and enjoy the ride!
# App Architecture

Expand Down Expand Up @@ -54,3 +54,7 @@ View what's currently in progress, and what's planned for the future: [Midday Ro
## Repo Activity

<!-- ![Repo Activity](https://repobeats.axiom.co/api/embed/ "Repobeats analytics image") -->

```
```
Binary file removed app-icon.png
Binary file not shown.
3 changes: 3 additions & 0 deletions apps/website/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ const config = {
},
],
},
experimental: {
ppr: true,
},
};

export default config;
37 changes: 24 additions & 13 deletions apps/website/src/app/[locale]/pricing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Page({
return (
<>
<div className="container max-w-[800px]">
<div className="h-screen min-h-[850px]">
<div className="min-h-[950px]">
<h1 className="mt-24 font-medium text-center text-5xl mb-2">
What it cost.
</h1>
Expand Down Expand Up @@ -64,8 +64,8 @@ export default function Page({
</div>

<BlurryCircle className="absolute -top-[50px] right-[0px] bg-[#3633D0] bg-opacity-10 dark:bg-opacity-5" />
<BlurryCircle className="absolute bottom-[160px] left-6 bg-[#A1F5CD] bg-opacity-15 dark:bg-opacity-5" />
<BlurryCircle className="absolute bottom-0 right-[150px] bg-[#FFECBB] bg-opacity-15 dark:bg-opacity-5" />
<BlurryCircle className="absolute bottom-[160px] left-6 bg-[#A1F5CD] bg-opacity-10 dark:bg-opacity-5" />
<BlurryCircle className="absolute bottom-0 right-[150px] bg-[#FFECBB] bg-opacity-10 dark:bg-opacity-5" />
</div>
</div>

Expand All @@ -80,22 +80,33 @@ export default function Page({
<span className="truncate">Can I self-host Midday.ai?</span>
</AccordionTrigger>
<AccordionContent>
Absolutely. Please refer to our docs for the latest guides and
information on self-hosting the platform.
Absolutely. We are currently writing the documentation for this.
You can find the repository{" "}
<a href="https://git.new/midday" className="underline">
here
</a>
.
</AccordionContent>
</AccordionItem>
<AccordionItem value="item-2">
<AccordionTrigger>Can I run Midday.ai locally?</AccordionTrigger>
<AccordionContent>
Yes. It comes with default styles that matches the other
components&apos; aesthetic.
Yes. We are currently writing documentation for this. You can
find the repository{" "}
<a href="https://git.new/midday" className="underline">
here
</a>
.
</AccordionContent>
</AccordionItem>
<AccordionItem value="item-3">
<AccordionTrigger>Is Midday.ai open source?</AccordionTrigger>
<AccordionContent>
Yes. It's animated by default, but you can disable it if you
prefer.
Yes. You can find the repository{" "}
<a href="https://git.new/midday" className="underline">
here
</a>
.
</AccordionContent>
</AccordionItem>
<AccordionItem value="item-4">
Expand All @@ -107,8 +118,9 @@ export default function Page({
<AccordionContent>
We take data privacy very seriously and implement
state-of-the-art security measures to protect your data. We are
also actively working towards SOC 2 Type II compliance. You can
learn more about our data privacy policies at{" "}
also actively working towards SOC 2 Type II compliance. We
encrypt data at rest, and sensitive data on row level. We also
support 2FA authentication.
<Link href="/privacy">midday.co/privacy</Link>.
</AccordionContent>
</AccordionItem>
Expand All @@ -122,8 +134,7 @@ export default function Page({
<AccordionContent>
Yes, you can cancel your subscription at any time. If you cancel
your subscription, you will still be able to use Midday until
the end of your billing period. After that, you will be
downgraded to the free plan.
the end of your billing period.
</AccordionContent>
</AccordionItem>

Expand Down
6 changes: 3 additions & 3 deletions apps/website/src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { LogoLarge } from "@/components/logo-large";
import { ErrorBoundary } from "next/dist/client/components/error-boundary";
import Link from "next/link";
import { Suspense } from "react";
// import { GithubStars } from "./github-stars";
import { GithubStars } from "./github-stars";
import { SocialLinks } from "./social-links";
import { StatusWidget } from "./status-widget";

Expand Down Expand Up @@ -89,9 +89,9 @@ export function Footer() {
<div className="md:w-6/12 flex mt-8 md:mt-0 md:justify-end">
<div className="flex justify-between md:items-end flex-col space-y-14">
<div className="flex items-center">
{/* <Suspense>
<Suspense>
<GithubStars />
</Suspense> */}
</Suspense>

<SocialLinks />
</div>
Expand Down
4 changes: 2 additions & 2 deletions apps/website/src/components/github-stars.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export async function GithubStars() {
const response = await fetch(
"https://api.github.com/repos/pontusab/reactnative.se",
"https://api.github.com/repos/midday-ai/midday",
{
next: {
revalidate: 3600,
Expand All @@ -12,7 +12,7 @@ export async function GithubStars() {

return (
<a
href="https://github.com/pontusab/reactnative.se"
href="https://git.new/midday"
className="border border-border flex justify-center h-8 leading-[30px] text-[#707070] dark:text-[#878787]"
>
<div className="bg-[#F2F1EF] dark:bg-[#1D1D1D] pl-2 pr-3 text-[14px] flex items-center space-x-2 border-r-[1px] border-border">
Expand Down
3 changes: 1 addition & 2 deletions apps/website/src/components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ export function Hero() {

<h1 className="text-6xl font-medium mt-6">Run your business smarter.</h1>

<p className="mt-4 md:mt-6 text-[#707070]">
<p className="mt-4 md:mt-6 text-[#707070] max-w-[600px]">
Midday provides you with greater insight into your business and
<br />
automates the boring tasks, allowing you to focus on what you love to do
instead.
</p>
Expand Down
12 changes: 6 additions & 6 deletions apps/website/src/components/screens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ export function Screens() {
name: "Join the comunity",
onClick: () => router.push("https://go.midday.ai/anPiuRx"),
},
// {
// id: "github",
// icon: require("public/dock/github.png"),
// name: "Open Repository",
// onClick: () => router.push("https://git.new/midday"),
// },
{
id: "github",
icon: require("public/dock/github.png"),
name: "Open Repository",
onClick: () => router.push("https://git.new/midday"),
},
];

const renderActiveApp = () => {
Expand Down
Binary file added repository.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0b2ae80

Please sign in to comment.