Skip to content
View fal-114514's full-sized avatar

Block or report fal-114514

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
fal-114514/README.md

ファル / Fal

ファル / Fal

Typing SVG


Svelte Dart Flutter

GitHub Streak

View Source
<script lang="ts">
  import { onMount } from "svelte";
  import { fade, fly } from "svelte/transition";

  let isMounted = false;

  const profile = {
    name: "ファル / Fal",
    bio: "技術ない",
    avatar: "/avatar.png",
    links: [
      {
        label: "Discord Status",
        url: "https://discord.com/users/1353729242906497084",
      },
    ],
  };

  onMount(() => {
    isMounted = true;
  });
</script>

<svelte:head>
  <title>{profile.name}</title>
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <link rel="preconnect" href="https://fonts.googleapis.com" />
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous" />
  <link
    href="https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600&family=LINE+Seed+JP:wght@400;700&display=swap"
    rel="stylesheet"
  />
</svelte:head>

<div class="min-h-screen bg-[#0d1117] text-zinc-100 overflow-x-hidden flex flex-col">
  {#if isMounted}
    <main
      class="
        flex-grow
        mx-auto
        px-6
        py-24 sm:py-32
        max-w-md
        flex flex-col items-center
      "
    >

      <div
        in:fly={{ y: 10, duration: 800 }}
        class="mb-12"
      >
        <img
          src={profile.avatar}
          alt={profile.name}
          class="
            w-20 h-20
            rounded-full object-cover
            border-2 border-zinc-700
          "
          on:error={(e) =>
            ((e.currentTarget as HTMLImageElement).src =
              "https://ui-avatars.com/api/?name=" +
              profile.name +
              "&background=f4f4f5&color=71717a&size=80")}
        />
      </div>

      <div
        in:fly={{ y: 10, duration: 800, delay: 100 }}
        class="text-center mb-16 space-y-4"
      >
        <h1 class="text-2xl font-semibold tracking-tight font-jp">
          {profile.name}
        </h1>
        <p class="text-sm text-zinc-400 font-jp leading-relaxed max-w-xs mx-auto">
          {profile.bio}
        </p>
      </div>

      <div
        in:fly={{ y: 10, duration: 800, delay: 200 }}
        class="w-full space-y-4"
      >
        <div class="flex justify-center gap-2">
          <img src="https://img.shields.io/badge/Svelte-FF3E00?style=for-the-badge&logo=svelte&logoColor=white" alt="Svelte" />
          <img src="https://img.shields.io/badge/Dart-0175C2?style=for-the-badge&logo=dart&logoColor=white" alt="Dart" />
          <img src="https://img.shields.io/badge/Flutter-02569B?style=for-the-badge&logo=flutter&logoColor=white" alt="Flutter" />
        </div>

        <div class="flex flex-col items-center gap-4">
          <a href="https://git.io/streak-stats">
            <img src="https://github-readme-streak-stats.herokuapp.com?user=fal-114514&theme=tokyonight&hide_border=true&locale=ja&date_format=%5BY.%5Dn.j&width=300" alt="GitHub Streak" />
          </a>

          {#each profile.links as link}
            <a
              href={link.url}
              target="_blank"
              rel="noopener noreferrer"
            >
              <img src="https://lanyard.cnrad.dev/api/1353729242906497084?showDisplayName=true&bg=1a1b27&theme=dark" alt={link.label} />
            </a>
          {/each}
        </div>
      </div>
    </main>
  {/if}
</div>

Pinned Loading

  1. forge-flutter forge-flutter Public

    lightweight (80MB RAM) desktop client for SD-WebUI-Forge. Faster and leaner than browser UIs.

    Dart 4 1

  2. csv-translator csv-translator Public

    Python

  3. email-replace email-replace Public

    Python

  4. nixos-seed nixos-seed Public

    NixOS configuration template

    Nix