Skip to content

Commit

Permalink
Next151 (#220)
Browse files Browse the repository at this point in the history
* next 15

* next 15

* next 15

* next 15
  • Loading branch information
mikeallisonJS authored Dec 25, 2024
1 parent cb4b613 commit 4da261f
Show file tree
Hide file tree
Showing 20 changed files with 18 additions and 424 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Update the VARIANT arg in docker-compose.yml to pick a Node version
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:20-bookworm
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:22-bookworm

# Update args in docker-compose.yaml to set the UID/GID of the "node" user.
ARG USER_UID=1000
Expand Down
1 change: 1 addition & 0 deletions .devcontainer/post-create.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
sudo chown -R node:node /home/node

curl -fsSL https://bun.sh/install | bash -s "bun-v1.1.38"

git config diff.lockb.textconv bun
git config diff.lockb.binary true

Expand Down
5 changes: 2 additions & 3 deletions apps/captainofbass.com/src/app/music/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import dynamic from 'next/dynamic'
import MusicClient from './pageClient'

import { PageContainer } from '@mikeallisonjs/shared-react-components'

const DynamicMusicClient = dynamic(() => import('./pageClient'), { ssr: false })
export default function Music() {
return (
<PageContainer>
<DynamicMusicClient />
<MusicClient />
</PageContainer>
)
}
2 changes: 1 addition & 1 deletion apps/captainssounds.com/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
1 change: 1 addition & 0 deletions apps/captainssounds.com/src/app/error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export default function Error({
</p>
<button
className="mx-auto mt-4 flex w-full items-center justify-center rounded-full bg-blue-600 p-4 tracking-wide text-white hover:opacity-90"
type="button"
onClick={() => reset()}
>
Try Again
Expand Down
47 changes: 0 additions & 47 deletions apps/captainssounds.com/src/components/carousel.tsx

This file was deleted.

55 changes: 0 additions & 55 deletions apps/captainssounds.com/src/components/collections.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions apps/captainssounds.com/src/components/navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@ import { SignInButton, SignedIn, SignedOut } from '@clerk/nextjs'

import Image from 'next/image'
import Link from 'next/link'
import { Suspense } from 'react'

import { UserButton } from '../userButton'

import Search, { SearchSkeleton } from './search'

export default async function Navbar() {
return (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export default function MobileMenu() {
<div className="p-4">
<button
className="mb-4 flex h-11 w-11 items-center justify-center rounded-md border border-neutral-200 text-black transition-colors dark:border-neutral-700 dark:text-white"
type="button"
onClick={closeMobileMenu}
aria-label="Close mobile menu"
>
Expand Down
107 changes: 0 additions & 107 deletions apps/captainssounds.com/src/components/product/gallery.tsx

This file was deleted.

This file was deleted.

Loading

0 comments on commit 4da261f

Please sign in to comment.