Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
tako0614 committed Feb 23, 2024
1 parent 98f27cc commit f01dd9e
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 69 deletions.
119 changes: 50 additions & 69 deletions routes/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,49 @@ import { useSignal } from "@preact/signals";
import Header from '../components/Header.tsx'
import Footer from '../components/Footer.tsx'
import UnderMenu from '../components/UnderMenu.tsx'

function Name({developerss}: {developerss: any}) {


return (
<div class="grid gap-4 md:gap-6">
<div class="flex gap-4 items-start">
<img
src={developerss.src}
width="120"
height="120"
alt="Portrait of the team member"
class="rounded-full overflow-hidden object-cover w-120 h-120 aspect-square"
/>
<div class="grid gap-2">
<div class="space-y-2">
<h2 class="text-2xl font-bold">{developerss.name}</h2>
<p class="text-gray-500 dark:text-gray-400">{developerss.position}</p>
</div>
<div class="space-y-4">
<p class="text-lg leading-loose">
{developerss.body}
</p>
</div>
</div>
</div>
</div>
)
}
const developers = {
tako: {
src: "/logo-mine.jpg",
name: "たこ",
position: "takoserver,takotopia leader",
body: "takoserverのリーダー!!マイクラサーバーや分散型チャットサービス「tako's」など様々なサービスを展開してます"
},
minai: {
src: "/379213.jpg",
name: "371tti",
position: "適当に考えてくださんせ",
body: "しがないタコのコードのダメ出しをするうっさいやつ。姉妹?SNSをつくっている。なおjsが苦手"
}
}
export default function Home() {
const count = useSignal(3);
return (
Expand All @@ -17,6 +60,13 @@ export default function Home() {
<p class="text-lg">Technology for All Knowledge & Octopus</p>
</div>
</div>
<div class="w-2/3 flex flex-col h-screen m-auto text-white">
<main class="flex-1 overflow-y-auto py-6 pt-20">
<h1 class="text-center pb-5 text-3xl lg:text-5xl">tako's developpers</h1>
<Name developerss={developers.tako}></Name>
<Name developerss={developers.minai}></Name>
</main>
</div>
<section class="pt-16 pb-10">
<h1 class="text-5xl text-center text-white">takoserver</h1>
<div class="m-auto w-3/4 text-white md:flex">
Expand All @@ -41,75 +91,6 @@ export default function Home() {
</div>
</div>
</section>
<div class="w-2/3 flex flex-col h-screen m-auto text-white">
<main class="flex-1 overflow-y-auto py-6 pt-20">
<h1 class="text-center text-5xl">tako's developpers</h1>
<div class="grid gap-4 md:gap-6">
<div class="flex gap-4 items-start">
<img
src="/logo-mine.jpg"
width="120"
height="120"
alt="Portrait of the team member"
class="rounded-full overflow-hidden object-cover w-120 h-120 aspect-square"
/>
<div class="grid gap-2">
<div class="space-y-2">
<h2 class="text-2xl font-bold">たこ</h2>
<p class="text-gray-500 dark:text-gray-400">takoserver leader</p>
</div>
<div class="space-y-4">
<p class="text-lg leading-loose">
test message
</p>
</div>
</div>
</div>
<div class="border-t w-full"></div>
<div class="flex gap-4 items-start">
<img
src="/logo-mine.jpg"
width="120"
height="120"
alt="Portrait of the team member"
class="rounded-full overflow-hidden object-cover w-120 h-120 aspect-square"
/>
<div class="grid gap-2">
<div class="space-y-2">
<h2 class="text-2xl font-bold">tako</h2>
<p class="text-gray-500 dark:text-gray-400">tako</p>
</div>
<div class="space-y-4">
<p class="text-lg leading-loose">
tako
</p>
</div>
</div>
</div>
<div class="border-t w-full"></div>
<div class="flex gap-4 items-start">
<img
src="/logo-mine.jpg"
width="120"
height="120"
alt="Portrait of the team member"
class="rounded-full overflow-hidden object-cover w-120 h-120 aspect-square"
/>
<div class="grid gap-2">
<div class="space-y-2">
<h2 class="text-2xl font-bold">tako</h2>
<p class="text-gray-500 dark:text-gray-400">tako</p>
</div>
<div class="space-y-4">
<p class="text-lg leading-loose">
tako
</p>
</div>
</div>
</div>
</div>
</main>
</div>
<UnderMenu />
<Footer />
</>
Expand Down
Binary file added static/379213.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f01dd9e

Please sign in to comment.