Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AMB-133][AMB-134] chore: update to use mibanco name and beta #31

Merged
merged 2 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Mi Banco
# MiBanco

**Banking for the Unbanked.**

This is the frontend of the Banco tech stack which can be self-hosted.
This is the frontend of the MiBanco tech stack which can be self-hosted.

## Running locally for development

Expand Down
2 changes: 1 addition & 1 deletion src/app/(app)/setup/wallet/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Page() {
<div className="flex justify-center p-4">
<Card>
<CardHeader>
<CardTitle>Welcome to Banco.</CardTitle>
<CardTitle>Welcome to MiBanco.</CardTitle>

<CardDescription>
Setup your first wallet to start your journey.
Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const font = Noto_Sans({
});

export const metadata: Metadata = {
title: 'Banco',
description: 'Banco',
title: 'MiBanco',
description: 'MiBanco',
};

export default async function RootLayout({
Expand Down
2 changes: 1 addition & 1 deletion src/components/form/SignUpForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ export function SignUpForm() {
</FormControl>
<FormMessage />
<FormDescription>
Banco signups are currently available by invitation only.
MiBanco signups are currently available by invitation only.
<br />
Please enter your invite code to complete the signup
process.
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/ExternalHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const ExternalHeader = () => {
return (
<div className="mt-1 flex w-full max-w-5xl flex-wrap items-center justify-between text-sm">
<Link href={ROUTES.home}>
<p className="text-xl font-bold">Banco</p>
<p className="text-xl font-bold">MiBanco</p>
</Link>
<div className="flex items-center justify-center gap-2">
{loading ? null : data?.user.id ? (
Expand Down
6 changes: 3 additions & 3 deletions src/components/layout/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ export const AppLayout: FC<{ children: ReactNode }> = ({ children }) => {
</Sheet>

<div className="flex items-center justify-center gap-4">
<h1 className="text-xl font-black">BANCO</h1>
<h1 className="text-xl font-black">MIBANCO</h1>

<Badge variant={'destructive'} className="hidden md:block">
Alpha - Limit funds and use at your own risk.
Beta - Limit funds and use at your own risk.
</Badge>
</div>

Expand Down Expand Up @@ -226,7 +226,7 @@ export const AppLayout: FC<{ children: ReactNode }> = ({ children }) => {
variant={'destructive'}
className="mx-4 mt-2 block text-center md:hidden"
>
Alpha - Limit funds and use at your own risk.
Beta - Limit funds and use at your own risk.
</Badge>

<main className="flex flex-col justify-center px-4">{children}</main>
Expand Down
2 changes: 1 addition & 1 deletion src/views/landing/Believe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const Believe = () => {
<section className="mt-28 w-full px-4 lg:px-14">
<div className="mb-6 flex w-full flex-col gap-4 lg:flex-row lg:items-center">
<h2 className="text-7xl font-semibold text-primary lg:w-1/2 lg:text-9xl 2xl:text-[200px]">
Banco
MiBanco
</h2>

<h3 className="max-w-2xl text-4xl font-semibold text-black/65 lg:w-1/2 lg:text-5xl">
Expand Down
4 changes: 2 additions & 2 deletions src/views/landing/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Footer = () => {
<footer className="w-full px-4 pb-20 pt-4 lg:px-14 lg:pb-16 lg:pt-6">
<div className="mb-20 flex w-full flex-col justify-between gap-20 py-4 lg:mb-12 lg:flex-row lg:items-center lg:gap-4 lg:py-6">
<Link href={ROUTES.home} className="text-2xl font-bold text-black">
Banco
MiBanco
</Link>

<nav className="flex flex-col gap-10 text-lg font-semibold text-black lg:flex-row lg:items-center lg:gap-16 lg:text-base">
Expand Down Expand Up @@ -50,7 +50,7 @@ export const Footer = () => {
</div>

<p className="text-center text-sm font-semibold text-black/65">
Copyright © {year} Banco
Copyright © {year} MiBanco
</p>
</footer>
);
Expand Down
2 changes: 1 addition & 1 deletion src/views/landing/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Header = () => {
return (
<header className="mx-auto flex w-full max-w-screen-2xl items-center justify-between gap-4 px-4 py-6 lg:px-14">
<Link href={ROUTES.home} className="text-2xl font-bold text-black">
Banco
MiBanco
</Link>

<nav className="hidden items-center gap-8 text-base font-semibold text-black lg:flex xl:gap-16">
Expand Down
4 changes: 2 additions & 2 deletions src/views/landing/OpenSource.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const OpenSource = () => {
<div className="flex w-full flex-col justify-between">
<div>
<h3 className="mb-10 text-5xl font-bold text-black/85">
Want to build on Banco? <br />
Want to build on MiBanco? <br />
<br /> Join our open source community
</h3>

Expand All @@ -36,7 +36,7 @@ export const OpenSource = () => {
/>

<p className="absolute bottom-16 left-4 right-4 text-2xl font-semibold text-white lg:left-16 lg:right-16">
Banco is built by the community, for the community. Contribute to
MiBanco is built by the community, for the community. Contribute to
our code, suggest features, and be a part of a banking revolution.
Visit our GitHub repository to get involved.
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/views/landing/Ready.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const Ready = () => {
</h2>

<h3 className="mb-8 mt-4 text-center text-xl font-semibold text-black/85 lg:text-2xl">
Join Banco today and take control of your financial future.
Join MiBanco today and take control of your financial future.
</h3>

<Link
Expand Down
2 changes: 1 addition & 1 deletion src/views/landing/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const Welcome = () => {

<div className="absolute left-6 right-6 top-6 lg:left-20 lg:top-20">
<h2 className="mb-4 text-3xl font-bold !leading-snug text-white lg:text-5xl">
Welcome to Banco
Welcome to MiBanco
</h2>

<h2 className="max-w-[600px] text-3xl font-semibold !leading-snug text-white/85 lg:text-5xl">
Expand Down
8 changes: 4 additions & 4 deletions src/views/landing/Why.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ export const Why = () => {
<h2 className="mb-10 text-5xl font-semibold text-black/45 lg:text-[88px]">
Why choose{' '}
<span className="mt-4 block text-7xl font-medium text-black lg:mt-0 lg:inline lg:text-9xl">
Banco?
MiBanco?
</span>
</h2>

<div className="grid w-full gap-4 lg:grid-cols-2">
<Card
title="Simple Security"
subtitle="Banco is designed to be user-friendly. No complicated hoops to jump through. Banking made easy for everyone."
subtitle="MiBanco is designed to be user-friendly. No complicated hoops to jump through. Banking made easy for everyone."
image={why2}
/>
<Card
Expand All @@ -47,12 +47,12 @@ export const Why = () => {
/>
<Card
title="Instant Payments"
subtitle="Receive and send payments with ease. Your Banco account comes with a 'Lightning Address' for simple and quick transactions."
subtitle="Receive and send payments with ease. Your MiBanco account comes with a 'Lightning Address' for simple and quick transactions."
image={why3}
/>
<Card
title="Private Messaging"
subtitle="Send encrypted messages to your contacts securely through Banco."
subtitle="Send encrypted messages to your contacts securely through MiBanco."
image={why4}
/>
</div>
Expand Down
Loading