利用規約(#95) (#311)

#95

#95

#95

#95

#95

Merge remote-tracking branch 'origin/main' into feature/095

#95

#95

#95

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #311
This commit was merged in pull request #311.
This commit is contained in:
2026-04-14 12:31:48 +09:00
parent a3914fb22a
commit e72ec608f4
21 changed files with 1457 additions and 379 deletions
@@ -1,3 +1,4 @@
import { motion } from 'framer-motion'
import { Helmet } from 'react-helmet-async'
import type { FC, ReactNode } from 'react'
@@ -6,10 +7,10 @@ type Props = { children: ReactNode }
export default (({ children }: Props) => (
<div
className="p-4 w-full md:w-64 md:h-full
md:h-[calc(100dvh-88px)] md:overflow-y-auto
sidebar">
<motion.div
layout="position"
transition={{ layout: { duration: .2, ease: 'easeOut' } }}
className="p-4 w-full md:w-64 md:h-full md:overflow-y-auto sidebar">
<Helmet>
<style>
{`
@@ -26,4 +27,4 @@ export default (({ children }: Props) => (
</Helmet>
{children}
</div>)) satisfies FC<Props>
</motion.div>)) satisfies FC<Props>