Skip to content

Commit

Permalink
quick fixes + made schema
Browse files Browse the repository at this point in the history
  • Loading branch information
itsliterallymonique committed Oct 8, 2024
1 parent b66524f commit 1fc22ed
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions api/supabase/schema.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
export type Project = {
id: string;
project_name: string;
energy_category: string;
size: number;
developer: string;
longitude: number;
latitude: number;
project_statues: string;
county: string;
town: string;
region: string;
state_senate_district: number;
assembly_district: number;
project_image: string | null;
additional_information: string | null;
key_development_milestones: object | null;
};
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CSSProperties } from 'react';
import Map from '@/components/Map/map';
import ProjectModal from '@/components/ProjectModal';
import Map from './components/map';

export default function Home() {
return (
Expand Down
File renamed without changes.

0 comments on commit 1fc22ed

Please sign in to comment.