Skip to content
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
11 changes: 9 additions & 2 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.sanity.io',
},
],
},
};

export default nextConfig;
export default nextConfig;
226 changes: 226 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@sanity/client": "^7.22.1",
"@sanity/image-url": "^2.1.1",
"airtable": "^0.12.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand Down
Binary file added public/img/about-right-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/about-right-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/about-right-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners-photo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/testimonial-kelly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/testimonial-melinda.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/testimonial-richard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/app/(auth)/login/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Image from "next/image";
import logo from "/public/icons/Just_BIRD_logo_blue.png";
import {
InputGroup,
InputGroupAddon,
Expand Down Expand Up @@ -37,8 +36,10 @@ export default function Login() {
">
<div className="flex justify-center h-[10cqw] mb-[1cqw]">
<Image
src={logo}
alt=""
src="/icons/Just_BIRD_logo_blue.png"
alt="BIRD"
width={120}
height={40}
className="object-contain"
/>
</div>
Expand Down
3 changes: 3 additions & 0 deletions src/app/(auth)/register/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Register() {
return null;
}
Loading