Skip to content

Commit

Permalink
Merge pull request #12 from Lostovayne/auth
Browse files Browse the repository at this point in the history
fix:texts in ui elements
  • Loading branch information
Lostovayne authored Dec 21, 2024
2 parents b356fea + 3b8d406 commit 2d0e8c7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 20 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,15 @@ npm run dev
yarn dev
```

5. Deploy Proyect to Vercel

```bash
npm run build && npx convex deploy

# Copied and Paste env variables

```

## Project Structure

```
Expand Down
38 changes: 19 additions & 19 deletions app/(marketing)/_components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { Button } from "@/components/ui/button";
import { Logo } from "./logo";

const Footer = () => {
return (
<div className="flex items-center w-full p-6 bg-background z-50 dark:bg-[#1f1f1f] ">
<Logo />
<div className="md:ml-auto w-full justify-between md:justify-end flex items-center gap-x-2 text-muted-foreground ">
<Button variant="ghost" size="sm">
Privacy Policy
</Button>
<Button variant="ghost" size="sm">
Terms $ Conditions
</Button>
</div>
</div>
);
};
export default Footer;
import { Button } from "@/components/ui/button";
import { Logo } from "./logo";

const Footer = () => {
return (
<div className="flex items-center w-full p-6 bg-background z-50 dark:bg-[#1f1f1f] ">
<Logo />
<div className="md:ml-auto w-full justify-between md:justify-end flex items-center gap-x-2 text-muted-foreground ">
<Button variant="ghost" size="sm">
Privacy Policy
</Button>
<Button variant="ghost" size="sm">
Terms & Conditions
</Button>
</div>
</div>
);
};
export default Footer;
2 changes: 1 addition & 1 deletion app/(marketing)/_components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Navbar = () => {
{!isAuthenticated && !isLoading && (
<>
<SignInButton mode={"modal"}>
<Button variant="ghost" size="sm">
<Button variant="outline" size="sm">
Log in
</Button>
</SignInButton>
Expand Down
3 changes: 3 additions & 0 deletions app/(public)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function PublicLayout({ children }: { children: React.ReactNode }) {
return <div className={"h-full dark:bg-[#1f1f1f]"}>{children}</div>;
}

1 comment on commit 2d0e8c7

@vercel
Copy link

@vercel vercel bot commented on 2d0e8c7 Dec 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.