this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update imports

BK610 6fcc5591 d41fba5a

+4 -35
+2 -1
components/BaseLayout.tsx
··· 1 1 import Head from "next/head"; 2 - import NavBar from "./NavBar"; 2 + import NavBar from "@/components/NavBar"; 3 3 4 4 interface BaseLayoutProps { 5 5 children: React.ReactElement; 6 6 navbarVisible?: boolean; 7 7 titleText?: string; 8 + className?: string; 8 9 } 9 10 10 11 export default function BaseLayout({
+1 -1
components/HomeSectionItem.tsx
··· 5 5 name: string; 6 6 description: string; 7 7 emoji: string; 8 - className: string; 8 + className?: string; 9 9 } 10 10 11 11 export default function HomeSectionItem({
+1 -1
components/ProjectSectionItem.tsx
··· 1 1 import Link from "next/link"; 2 - import type Project from "../types/Project"; 2 + import type Project from "@/types/Project"; 3 3 4 4 interface ProjectSectionItemProps { 5 5 project: Project;
-32
pages/places.js
··· 1 - import Head from "next/head"; 2 - import { Component } from "react"; 3 - import BaseLayout from "../components/BaseLayout"; 4 - import BaseMap from "../components/BaseMap"; 5 - 6 - export default class Places extends Component { 7 - render() { 8 - return ( 9 - <> 10 - <Head> 11 - <link // Styles Mapbox and adds features. Removing this makes the map very simplistic 12 - href="https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl.css" 13 - rel="stylesheet" 14 - /> 15 - </Head> 16 - <BaseLayout titleText={"Places"}> 17 - <div className="space-y-4"> 18 - <h2>Places</h2> 19 - <p className="text-lg">Where I've been...</p> 20 - <div 21 - className="w-full h-96 overflow-hidden 22 - rounded-lg 23 - border border-stone-500" 24 - > 25 - <BaseMap /> 26 - </div> 27 - </div> 28 - </BaseLayout> 29 - </> 30 - ); 31 - } 32 - }