From 6f9cc0bbbb2e2c75960cf8b9b80e468335c2aa2b Mon Sep 17 00:00:00 2001 From: josufh Date: Sun, 7 Jun 2026 18:48:42 +0900 Subject: [PATCH] Redesign site as bilingual CV --- Controllers/HomeController.cs | 83 ++++++- Middleware/CurlLandingMiddleware.cs | 18 +- Views/Home/Cv.cshtml | 145 +++++++++++++ Views/Home/Cv.cshtml.css | 142 ++++++++++++ Views/Home/CvJa.cshtml | 145 +++++++++++++ Views/Home/CvJa.cshtml.css | 142 ++++++++++++ Views/Home/Index.cshtml | 162 +------------- Views/Home/Index.cshtml.css | 325 ++-------------------------- Views/Home/IndexJa.cshtml | 18 ++ Views/Home/IndexJa.cshtml.css | 40 ++++ Views/Shared/_Layout.cshtml | 22 +- wwwroot/css/site.css | 9 +- 12 files changed, 784 insertions(+), 467 deletions(-) create mode 100644 Views/Home/Cv.cshtml create mode 100644 Views/Home/Cv.cshtml.css create mode 100644 Views/Home/CvJa.cshtml create mode 100644 Views/Home/CvJa.cshtml.css create mode 100644 Views/Home/IndexJa.cshtml create mode 100644 Views/Home/IndexJa.cshtml.css diff --git a/Controllers/HomeController.cs b/Controllers/HomeController.cs index 59417d5..ab425d2 100644 --- a/Controllers/HomeController.cs +++ b/Controllers/HomeController.cs @@ -7,6 +7,7 @@ namespace LowLevelGuyCom.Controllers; public class HomeController : Controller { private readonly ILogger _logger; + private const string LanguageCookieName = "site-lang"; public HomeController(ILogger logger) { @@ -15,7 +16,25 @@ public class HomeController : Controller public IActionResult Index() { - return View(); + return View(UseJapanese() ? "IndexJa" : "Index"); + } + + [Route("ja")] + public IActionResult IndexJa() + { + return Redirect("/?lang=ja"); + } + + [Route("cv")] + public IActionResult Cv() + { + return View(UseJapanese() ? "CvJa" : "Cv"); + } + + [Route("cv/ja")] + public IActionResult CvJa() + { + return Redirect("/cv?lang=ja"); } public IActionResult Privacy() @@ -28,4 +47,66 @@ public class HomeController : Controller { return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); } + + private bool UseJapanese() + { + string? queryLanguage = Request.Query["lang"].FirstOrDefault(); + if (TryNormalizeLanguage(queryLanguage, out bool queryIsJapanese)) + { + Response.Cookies.Append( + LanguageCookieName, + queryIsJapanese ? "ja" : "en", + new CookieOptions + { + MaxAge = TimeSpan.FromDays(365), + SameSite = SameSiteMode.Lax + }); + + return queryIsJapanese; + } + + if (TryNormalizeLanguage(Request.Cookies[LanguageCookieName], out bool cookieIsJapanese)) + return cookieIsJapanese; + + return BrowserPrefersJapanese(); + } + + private static bool TryNormalizeLanguage(string? language, out bool isJapanese) + { + isJapanese = false; + + if (string.IsNullOrWhiteSpace(language)) + return false; + + string normalized = language.Trim().ToLowerInvariant(); + if (normalized.StartsWith("ja")) + { + isJapanese = true; + return true; + } + + if (normalized.StartsWith("en")) + { + isJapanese = false; + return true; + } + + return false; + } + + private bool BrowserPrefersJapanese() + { + string acceptLanguage = Request.Headers.AcceptLanguage.ToString(); + if (string.IsNullOrWhiteSpace(acceptLanguage)) + return false; + + foreach (string segment in acceptLanguage.Split(',', StringSplitOptions.RemoveEmptyEntries)) + { + string language = segment.Split(';', 2)[0].Trim(); + if (TryNormalizeLanguage(language, out bool isJapanese)) + return isJapanese; + } + + return false; + } } diff --git a/Middleware/CurlLandingMiddleware.cs b/Middleware/CurlLandingMiddleware.cs index ed35f70..b0ccd2e 100644 --- a/Middleware/CurlLandingMiddleware.cs +++ b/Middleware/CurlLandingMiddleware.cs @@ -52,11 +52,11 @@ public sealed class CurlLandingMiddleware( var sb = new StringBuilder(); sb.AppendLine(Arch(" /\\")); - sb.AppendLine(Arch(" / \\") + " " + Bold("LOW LEVEL GUY")); - sb.AppendLine(Arch(" /\\ \\") + " " + Dim("arch vibes • low-level content")); + sb.AppendLine(Arch(" / \\") + " " + Bold("Joshua Ferrer")); + sb.AppendLine(Arch(" /\\ \\") + " " + Dim("software engineer / technical lead")); sb.AppendLine(Arch(" / \\")); - sb.AppendLine(Arch(" / ,, \\") + " C • ASM • Linux"); - sb.AppendLine(Arch(" / | | -\\") + " no magic • just bytes"); + sb.AppendLine(Arch(" / ,, \\") + " .NET • Linux • Cloud"); + sb.AppendLine(Arch(" / | | -\\") + " CV: https://low-level-guy.com/cv"); sb.AppendLine(Arch(" /_-'' ''-_\\" )); sb.AppendLine(); sb.AppendLine(Dim("────────────────────────────────────────────────────────")); @@ -64,11 +64,11 @@ public sealed class CurlLandingMiddleware( sb.AppendLine("$ curl " + Arch("low-level-guy.com")); sb.AppendLine("$ web " + Arch("https://low-level-guy.com")); sb.AppendLine(); - sb.AppendLine("• systems programming"); - sb.AppendLine("• graphics from scratch"); - sb.AppendLine("• compilers, loaders, kernels"); + sb.AppendLine("• software engineering"); + sb.AppendLine("• infrastructure integration"); + sb.AppendLine("• systems-oriented software"); sb.AppendLine(); - sb.AppendLine(Dim("// operating below the abstraction layer")); + sb.AppendLine(Dim("// professional profile")); sb.AppendLine(); return sb.ToString(); @@ -81,4 +81,4 @@ public static class CurlLandingMiddlewareExtensions { return app.UseMiddleware(); } -} \ No newline at end of file +} diff --git a/Views/Home/Cv.cshtml b/Views/Home/Cv.cshtml new file mode 100644 index 0000000..b883ddd --- /dev/null +++ b/Views/Home/Cv.cshtml @@ -0,0 +1,145 @@ +@{ + ViewData["Title"] = "CV"; +} + +
+
+
+

Curriculum Vitae

+

Joshua Ferrer

+

Software Engineer / Technical Lead

+
+
+ josuferrer@outlook.com + low-level-guy.com + git.low-level-guy.com/josufh + Tokyo, Japan + Japanese version +
+
+ +
+

Profile

+

+ Software engineer based in Tokyo, working across backend development, infrastructure, requirements + definition, specification writing, and technical leadership. Experienced with .NET, C, Flutter, Linux, + cloud environments, CI/CD, and internal business systems. +

+

+ Owns source code quality, coding standards, infrastructure operations, and technical research for new + projects, with practical experience in architecture decisions, code review, debugging, infrastructure + setup, and defect prevention before release. +

+
+ +
+

Experience

+
+
+
+

Nihon Kyoiku Create Co., Ltd. (株式会社日本教育クリエイト)

+

Software Engineer / Technical Lead, IT Solutions Business Department (ITソリューション事業部)

+
+ 2024/09 - Present +
+
    +
  • Backend and application development for internal business systems.
  • +
  • Requirements definition with clients and specification writing.
  • +
  • Infrastructure management, cloud VM provisioning, CI/CD setup, and source control administration.
  • +
  • Code review, coding standard maintenance, technical investigation, and defect prevention before release.
  • +
  • Developed and deployed an internal approval system (稟議システム) used by more than 1,000 users.
  • +
  • Administers Gitea and Redmine environments used by a 15-person department.
  • +
  • Deployed five projects of varying size, including a 1.5-year company-wide approval system project.
  • +
  • Improved manual workflows through automation, coding standards, code review, and cloud deployment practices.
  • +
+
+
+ +
+

Additional Experience

+
+ Keio Plaza Hotel (京王プラザホテル) - Lobby / Customer Service +
+
+
+

Keio Plaza Hotel (京王プラザホテル)

+

Lobby and customer service, Shinjuku

+
+ 2023/04 +
+
    +
  • Handled customer service in Japanese, English, Spanish, and occasional Chinese.
  • +
  • Used business Japanese and keigo (敬語) in a hotel environment.
  • +
  • Built Excel-based workflow automation as a secondary responsibility.
  • +
+
+
+
+ +
+

Selected Projects

+
+
+
+

Personal Git Server

+

Public repositories and project references

+
+ Ongoing +
+
    +
  • git.low-level-guy.com/josufh
  • +
  • Detailed project writeups will be added as selected repositories are finalized.
  • +
  • Open source activity includes reporting issues to improve .NET tutorial sample code.
  • +
+
+
+ +
+
+

Technical Skills

+
    +
  • Primary: C#, .NET, ASP.NET, C
  • +
  • Application: Dart, Flutter, HTML, JavaScript / TypeScript, Node.js
  • +
  • Databases: MySQL, PostgreSQL
  • +
  • Cloud: AWS, Google Cloud, Oracle Cloud, Azure
  • +
  • DevOps: Gitea Actions CI/CD, Docker, Linux server administration
  • +
  • Testing: xUnit
  • +
  • Tools: Neovim / Vim, VS Code
  • +
  • Secondary: Python
  • +
+
+
+

Languages

+
    +
  • English - professional / TOEIC 965
  • +
  • Japanese - professional / JLPT N2
  • +
  • Spanish - native
  • +
  • Catalan - native
  • +
  • Chinese - intermediate / HSK 3
  • +
  • Japanese Sign Language - beginner / JSL Grade 5
  • +
+
+
+ +
+

Education

+
+
+
+

Tokyo Business and Language College (東京ビジネス外語カレッジ)

+

IT Business (ITビジネス), Ikebukuro

+
+ 2021/04 - 2023/03 +
+

Business program with IT-focused coursework.

+
+
+ +
+

Role Interests

+

+ Interested in software engineering, architecture, project leadership, internal systems, infrastructure, + and technology research roles. Open to remote work and office-based collaboration. +

+
+
diff --git a/Views/Home/Cv.cshtml.css b/Views/Home/Cv.cshtml.css new file mode 100644 index 0000000..79591d6 --- /dev/null +++ b/Views/Home/Cv.cshtml.css @@ -0,0 +1,142 @@ +.cv-page { + max-width: 920px; + margin: 0 auto; + padding: 3rem 0 4rem; + color: #111827; +} + +.cv-header { + display: flex; + justify-content: space-between; + gap: 2rem; + padding-bottom: 2rem; + border-bottom: 2px solid #111827; +} + +.cv-eyebrow { + margin: 0 0 0.6rem; + color: #5b6472; + font-size: 0.85rem; + text-transform: uppercase; +} + +.cv-header h1 { + margin: 0; + font-size: 3rem; + line-height: 1; +} + +.cv-role { + margin: 0.75rem 0 0; + color: #374151; + font-size: 1.2rem; +} + +.cv-contact { + display: grid; + align-content: start; + gap: 0.35rem; + margin: 0; + font-style: normal; + text-align: right; +} + +.cv-contact a { + color: #111827; + text-decoration: none; +} + +.cv-contact a:hover { + text-decoration: underline; +} + +.cv-section { + padding: 2rem 0; + border-bottom: 1px solid #d1d5db; +} + +.cv-section h2 { + margin: 0 0 1rem; + color: #111827; + font-size: 1rem; + font-weight: 700; + text-transform: uppercase; +} + +.cv-section p, +.cv-section li { + color: #374151; + line-height: 1.65; +} + +.cv-entry { + display: grid; + gap: 0.75rem; +} + +.cv-entry__header { + display: flex; + justify-content: space-between; + gap: 1rem; +} + +.cv-entry h3 { + margin: 0; + font-size: 1.1rem; +} + +.cv-entry__header p { + margin: 0.25rem 0 0; +} + +.cv-entry__header span { + flex: 0 0 auto; + color: #5b6472; +} + +.cv-section ul { + margin: 0; + padding-left: 1.2rem; +} + +.cv-details { + border: 1px solid #d1d5db; + border-radius: 8px; + padding: 1rem; + background: #ffffff; +} + +.cv-details summary { + cursor: pointer; + color: #111827; + font-weight: 700; +} + +.cv-details__body { + margin-top: 1rem; +} + +.cv-columns { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 2rem; +} + +@media (max-width: 760px) { + .cv-header, + .cv-entry__header { + display: grid; + } + + .cv-contact { + text-align: left; + } + + .cv-header h1 { + font-size: 2.35rem; + } + + .cv-columns { + grid-template-columns: 1fr; + } +} diff --git a/Views/Home/CvJa.cshtml b/Views/Home/CvJa.cshtml new file mode 100644 index 0000000..610e7d5 --- /dev/null +++ b/Views/Home/CvJa.cshtml @@ -0,0 +1,145 @@ +@{ + ViewData["Title"] = "日本語CV"; +} + +
+
+
+

職務経歴書

+

Joshua Ferrer

+

ソフトウェアエンジニア / テクニカルリード

+
+
+ josuferrer@outlook.com + low-level-guy.com + git.low-level-guy.com/josufh + 東京都, 日本 + English version +
+
+ +
+

プロフィール

+

+ 東京を拠点とするソフトウェアエンジニアです。バックエンド開発、インフラ、要件定義、 + 仕様書作成、技術リードを担当しています。.NET、C、Flutter、Linux、クラウド環境、 + CI/CD、社内業務システムの経験があります。 +

+

+ ソースコード品質、コーディング規約、インフラ運用、新規プロジェクト向けの技術調査を担当し、 + アーキテクチャ判断、コードレビュー、デバッグ、インフラ構築、リリース前の不具合防止に取り組んでいます。 +

+
+ +
+

職務経験

+
+
+
+

株式会社日本教育クリエイト

+

ソフトウェアエンジニア / テクニカルリード, ITソリューション事業部

+
+ 2024/09 - 現在 +
+
    +
  • 社内業務システムのバックエンドおよびアプリケーション開発。
  • +
  • クライアントとの要件定義および仕様書作成。
  • +
  • インフラ管理、クラウドVM構築、CI/CD設定、ソースコード管理の運用。
  • +
  • コードレビュー、コーディング規約の整備、技術調査、リリース前の不具合防止。
  • +
  • 1,000名以上が利用する社内稟議システムを開発・デプロイ。
  • +
  • 15名規模の部署で利用されるGiteaおよびRedmine環境を管理。
  • +
  • 1.5年規模の全社向け稟議システムを含む、大小5件のプロジェクトをデプロイ。
  • +
  • 自動化、コーディング規約、コードレビュー、クラウドデプロイ運用により手作業を削減。
  • +
+
+
+ +
+

その他の経験

+
+ 京王プラザホテル - ロビー / 接客 +
+
+
+

京王プラザホテル

+

ロビー・接客, 新宿

+
+ 2023/04 +
+
    +
  • 日本語、英語、スペイン語、および一部中国語で接客対応。
  • +
  • ホテル業務の中でビジネス日本語および敬語を使用。
  • +
  • 副次的な業務としてExcelによるワークフロー自動化を作成。
  • +
+
+
+
+ +
+

プロジェクト

+
+
+
+

個人Gitサーバー

+

公開リポジトリおよびプロジェクト参照

+
+ 継続中 +
+
    +
  • git.low-level-guy.com/josufh
  • +
  • 選定したリポジトリについて、詳細なプロジェクト説明を今後追加予定。
  • +
  • .NETチュートリアルのサンプルコード改善のため、Issue報告などの活動があります。
  • +
+
+
+ +
+
+

技術スキル

+
    +
  • 主力: C#, .NET, ASP.NET, C
  • +
  • アプリケーション: Dart, Flutter, HTML, JavaScript / TypeScript, Node.js
  • +
  • データベース: MySQL, PostgreSQL
  • +
  • クラウド: AWS, Google Cloud, Oracle Cloud, Azure
  • +
  • DevOps: Gitea Actions CI/CD, Docker, Linuxサーバー管理
  • +
  • テスト: xUnit
  • +
  • ツール: Neovim / Vim, VS Code
  • +
  • 補助: Python
  • +
+
+
+

言語

+
    +
  • 英語 - 業務レベル / TOEIC 965
  • +
  • 日本語 - 業務レベル / JLPT N2
  • +
  • スペイン語 - ネイティブ
  • +
  • カタルーニャ語 - ネイティブ
  • +
  • 中国語 - 中級 / HSK 3
  • +
  • 日本手話 - 初級 / JSL Grade 5
  • +
+
+
+ +
+

学歴

+
+
+
+

東京ビジネス外語カレッジ

+

ITビジネス, 池袋

+
+ 2021/04 - 2023/03 +
+

ビジネスを中心に、IT要素を含むコースを修了。

+
+
+ +
+

希望領域

+

+ ソフトウェアエンジニアリング、アーキテクチャ、プロジェクトリード、社内システム、 + インフラ、技術調査に関わる職種に関心があります。リモートワークおよび出社での対面コミュニケーションの + どちらにも対応可能です。 +

+
+
diff --git a/Views/Home/CvJa.cshtml.css b/Views/Home/CvJa.cshtml.css new file mode 100644 index 0000000..79591d6 --- /dev/null +++ b/Views/Home/CvJa.cshtml.css @@ -0,0 +1,142 @@ +.cv-page { + max-width: 920px; + margin: 0 auto; + padding: 3rem 0 4rem; + color: #111827; +} + +.cv-header { + display: flex; + justify-content: space-between; + gap: 2rem; + padding-bottom: 2rem; + border-bottom: 2px solid #111827; +} + +.cv-eyebrow { + margin: 0 0 0.6rem; + color: #5b6472; + font-size: 0.85rem; + text-transform: uppercase; +} + +.cv-header h1 { + margin: 0; + font-size: 3rem; + line-height: 1; +} + +.cv-role { + margin: 0.75rem 0 0; + color: #374151; + font-size: 1.2rem; +} + +.cv-contact { + display: grid; + align-content: start; + gap: 0.35rem; + margin: 0; + font-style: normal; + text-align: right; +} + +.cv-contact a { + color: #111827; + text-decoration: none; +} + +.cv-contact a:hover { + text-decoration: underline; +} + +.cv-section { + padding: 2rem 0; + border-bottom: 1px solid #d1d5db; +} + +.cv-section h2 { + margin: 0 0 1rem; + color: #111827; + font-size: 1rem; + font-weight: 700; + text-transform: uppercase; +} + +.cv-section p, +.cv-section li { + color: #374151; + line-height: 1.65; +} + +.cv-entry { + display: grid; + gap: 0.75rem; +} + +.cv-entry__header { + display: flex; + justify-content: space-between; + gap: 1rem; +} + +.cv-entry h3 { + margin: 0; + font-size: 1.1rem; +} + +.cv-entry__header p { + margin: 0.25rem 0 0; +} + +.cv-entry__header span { + flex: 0 0 auto; + color: #5b6472; +} + +.cv-section ul { + margin: 0; + padding-left: 1.2rem; +} + +.cv-details { + border: 1px solid #d1d5db; + border-radius: 8px; + padding: 1rem; + background: #ffffff; +} + +.cv-details summary { + cursor: pointer; + color: #111827; + font-weight: 700; +} + +.cv-details__body { + margin-top: 1rem; +} + +.cv-columns { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 2rem; +} + +@media (max-width: 760px) { + .cv-header, + .cv-entry__header { + display: grid; + } + + .cv-contact { + text-align: left; + } + + .cv-header h1 { + font-size: 2.35rem; + } + + .cv-columns { + grid-template-columns: 1fr; + } +} diff --git a/Views/Home/Index.cshtml b/Views/Home/Index.cshtml index a34cde9..6820e51 100644 --- a/Views/Home/Index.cshtml +++ b/Views/Home/Index.cshtml @@ -1,157 +1,19 @@ @{ - ViewData["Title"] = "Joshua Ferrer — Backend Engineer"; + ViewData["Title"] = "Joshua Ferrer"; } -
-
-
-

Backend · Low-level · Architecture

- -

Joshua Ferrer

-

Backend Engineer | IT Architecture

- -

- I love low-level programming and building systems from scratch. For me, this is the best way to learn: - understanding memory, performance, and execution flow directly instead of relying on abstractions. - My main focus is backend engineering with a strong performance mindset. -

- - - -
    -
  • LocationTokyo
  • -
  • Domainlow-level-guy.com
  • -
  • FocusBackend · Performance · Architecture
  • -
-
- - -
-
- -
- -
-

About me

-
-

- I specialize in backend systems and low-level programming. I enjoy avoiding unnecessary dependencies and - building core functionality myself, as it gives a deeper understanding of how software actually works. +

+
+

Software Engineer / Technical Lead based in Tokyo

+

Joshua Ferrer

+

+ Software engineering, backend systems, infrastructure, requirements definition, and technical leadership + for internal business systems.

-

- My daily work involves backend development, architecture design, and cloud-based systems, with a strong - focus on reliability and maintainability. -

-
-
- -
-

Experience

- -
-
-
-

株式会社日本教育クリエイト — ITソリューション事業部

- 2024/09 — Present -
- -

- Backend Engineer. Internal business systems, infrastructure integration, and architectural design. -

- -
    -
  • Design and implementation of backend services using .NET / ASP.NET.
  • -
  • Cloud integrations across Azure, AWS, Google Cloud, and Oracle Cloud.
  • -
  • Ownership of deployment workflows using Docker and Linux-based environments.
  • -
  • System-level problem solving with performance and reliability as primary goals.
  • -
- -
- C# - ASP.NET - Docker - Linux -
-
-
-
- -
-

Skills

- -
-
-

Technical

-
    -
  • Languages: C, C# (main), others as needed
  • -
  • Frameworks: .NET, ASP.NET
  • -
  • Cloud: Google Cloud, AWS, Azure, Oracle
  • -
  • OS: Arch Linux, Ubuntu, Debian (Windows via WSL)
  • -
  • Tools: VS Code, Vim
  • -
-
- -
-

Languages

-
    -
  • English — native
  • -
  • Spanish — native
  • -
  • Catalan — native
  • -
  • Japanese — fluent / business (JLPT N1)
  • -
  • Chinese — beginner (HSK3)
  • -
+
- -
-

Education

-
- IT Business
- 東京ビジネス外語カレッジ(池袋)
- Senmon Gakkou -
-
- -
-

Contact

-
-
- -
-
Website
- -
-
-
GitHub
- -
-
-
-
- -
\ No newline at end of file diff --git a/Views/Home/Index.cshtml.css b/Views/Home/Index.cshtml.css index 30c6e3e..0bc7952 100644 --- a/Views/Home/Index.cshtml.css +++ b/Views/Home/Index.cshtml.css @@ -1,317 +1,40 @@ -:root { - /* Light theme defaults */ - --cv-bg: #0b1220; - --cv-bg2: #060a13; - - --cv-accent: #4f7cff; - --cv-accent2: #00ffd1; - - --cv-text: rgba(255, 255, 255, 0.92); - --cv-muted: rgba(255, 255, 255, 0.70); - --cv-muted2: rgba(255, 255, 255, 0.55); - --cv-border: rgba(255, 255, 255, 0.12); - - /* “Paper” surfaces (used in light mode content area) */ - --cv-paper: #ffffff; - --cv-paper-text: rgba(0, 0, 0, 0.88); - --cv-paper-muted: rgba(0, 0, 0, 0.62); - --cv-paper-border: rgba(0, 0, 0, 0.10); - --cv-shadow: 0 10px 24px rgba(0, 0, 0, 0.06); - - --cv-radius: 18px; +.landing { + min-height: calc(100vh - 180px); + display: flex; + align-items: center; + padding: 5rem 0; } -/* Make anchor jumps feel better */ -html { - scroll-behavior: smooth; +.landing__content { + max-width: 760px; } -/* ---------------- Hero ---------------- */ - -.cv-hero { - background: - radial-gradient(1200px 600px at 10% 10%, rgba(79,124,255,.30), transparent 60%), - radial-gradient(900px 500px at 80% 20%, rgba(0,255,209,.12), transparent 60%), - linear-gradient(180deg, var(--cv-bg), var(--cv-bg2)); - border-bottom: 1px solid var(--cv-border); - padding: 3.75rem 0 2.75rem 0; -} - -.cv-hero__inner { - max-width: 1140px; - margin: 0 auto; - padding: 0 1rem; - - display: grid; - grid-template-columns: 1.35fr 0.95fr; - gap: 1.25rem; - align-items: start; -} - -.cv-hero__main { - min-width: 0; -} - -.cv-kicker { - margin: 0 0 0.85rem 0; - color: var(--cv-muted2); - font-size: 0.85rem; - letter-spacing: 0.10em; +.landing__eyebrow { + margin: 0 0 1rem; + color: #5b6472; + font-size: 0.95rem; text-transform: uppercase; } -.cv-title { +.landing h1 { margin: 0; - color: var(--cv-text); - font-weight: 750; - line-height: 1.05; - letter-spacing: -0.02em; + color: #111827; + font-size: clamp(2.75rem, 7vw, 5.5rem); + font-weight: 700; + line-height: 1; } -.cv-subtitle { - margin: 0.75rem 0 1.25rem 0; - color: var(--cv-muted); - font-size: 1.1rem; +.landing__summary { + max-width: 620px; + margin: 1.5rem 0 0; + color: #374151; + font-size: 1.2rem; + line-height: 1.6; } -.cv-summary { - margin: 0 0 1.5rem 0; - color: var(--cv-muted); - max-width: 70ch; - - /* Technical feel without being gimmicky */ - font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; - font-size: 0.95rem; - line-height: 1.55; -} - -.cv-actions { +.landing__actions { display: flex; flex-wrap: wrap; - gap: 0.6rem; - margin-bottom: 1.25rem; -} - -.cv-btn { - border-radius: 999px; - padding: 0.65rem 1.1rem; -} - -.cv-meta { - list-style: none; - padding: 0; - margin: 0; - - display: grid; - gap: 0.5rem; -} - -.cv-meta li { - display: flex; gap: 0.75rem; - align-items: baseline; + margin-top: 2rem; } - -.cv-meta__label { - min-width: 86px; - color: var(--cv-muted2); - font-size: 0.9rem; -} - -.cv-meta__value { - color: var(--cv-text); - font-size: 0.95rem; -} - -/* ---------------- Side cards (hero) ---------------- */ - -.cv-hero__side { - display: grid; - gap: 1rem; -} - -.cv-card { - background: var(--cv-paper); - color: var(--cv-paper-text); - border: 1px solid var(--cv-paper-border); - border-radius: var(--cv-radius); - padding: 1.25rem; - box-shadow: var(--cv-shadow); -} - -.cv-card__title { - margin: 0 0 0.5rem 0; - font-size: 1rem; - font-weight: 600; -} - -.cv-links { - display: flex; - gap: 0.75rem; - flex-wrap: wrap; -} - -.cv-link { - color: var(--cv-accent); - text-decoration: none; -} -.cv-link:hover { - text-decoration: underline; -} - -/* ---------------- Main content ---------------- */ - -.cv-content { - max-width: 1140px; - margin: 0 auto; - padding: 2.25rem 1rem 3.5rem 1rem; -} - -.cv-section { - margin: 0 0 2.25rem 0; -} - -.cv-h2 { - margin: 0 0 0.75rem 0; - font-weight: 650; - letter-spacing: -0.01em; -} - -.cv-h3 { - margin: 0 0 0.25rem 0; - font-weight: 600; -} - -.cv-muted { - color: var(--cv-paper-muted); -} - -/* ---------------- Layout helpers ---------------- */ - -.cv-grid2 { - display: grid; - gap: 1rem; - grid-template-columns: repeat(2, 1fr); -} - -.cv-grid3 { - display: grid; - gap: 1rem; - grid-template-columns: repeat(3, 1fr); -} - -.cv-stack { - display: grid; - gap: 1rem; -} - -/* ---------------- Items (experience/projects blocks) ---------------- */ - -.cv-item { - background: var(--cv-paper); - border: 1px solid var(--cv-paper-border); - border-radius: var(--cv-radius); - padding: 1.25rem; - box-shadow: var(--cv-shadow); - color: var(--cv-paper-text); -} - -.cv-item__top { - display: flex; - justify-content: space-between; - align-items: baseline; - gap: 0.75rem; - flex-wrap: wrap; -} - -.cv-date { - color: rgba(0, 0, 0, 0.55); - font-size: 0.95rem; -} - -/* Lists */ -.cv-list { - margin: 0.5rem 0 0 0; - padding-left: 1.2rem; -} -.cv-list li { - margin-bottom: 0.25rem; -} - -.cv-bullets { - margin: 0.6rem 0 0 0; - padding-left: 1.15rem; -} -.cv-bullets li { - margin-bottom: 0.35rem; -} - -/* Tags */ -.cv-tags { - margin-top: 0.75rem; - display: flex; - gap: 0.5rem; - flex-wrap: wrap; -} - -.cv-tag { - display: inline-flex; - align-items: center; - border: 1px solid rgba(0, 0, 0, 0.12); - background: rgba(0, 0, 0, 0.03); - padding: 0.25rem 0.6rem; - border-radius: 999px; - font-size: 0.85rem; - color: rgba(0, 0, 0, 0.70); -} - -/* ---------------- Contact grid ---------------- */ - -.cv-contact { - display: grid; - grid-template-columns: repeat(3, 1fr); - gap: 1rem; -} - -/* ---------------- Responsive ---------------- */ - -@media (max-width: 992px) { - .cv-hero__inner { - grid-template-columns: 1fr; - } - - .cv-grid2 { - grid-template-columns: 1fr; - } - - .cv-grid3 { - grid-template-columns: 1fr; - } - - .cv-contact { - grid-template-columns: 1fr; - } -} - -/* ---------------- Dark mode for main content ---------------- - The hero is already dark; this flips the “paper cards” to dark surfaces. -*/ -@media (prefers-color-scheme: dark) { - :root { - --cv-paper: #0f1a30; - --cv-paper-text: rgba(255, 255, 255, 0.92); - --cv-paper-muted: rgba(255, 255, 255, 0.72); - --cv-paper-border: rgba(255, 255, 255, 0.12); - --cv-shadow: none; - } - - .cv-date { - color: rgba(255, 255, 255, 0.55); - } - - .cv-tag { - border: 1px solid rgba(255, 255, 255, 0.12); - background: rgba(255, 255, 255, 0.06); - color: rgba(255, 255, 255, 0.72); - } -} \ No newline at end of file diff --git a/Views/Home/IndexJa.cshtml b/Views/Home/IndexJa.cshtml new file mode 100644 index 0000000..9e0a042 --- /dev/null +++ b/Views/Home/IndexJa.cshtml @@ -0,0 +1,18 @@ +@{ + ViewData["Title"] = "Joshua Ferrer"; +} + +
+
+

東京を拠点とするソフトウェアエンジニア / テクニカルリード

+

Joshua Ferrer

+

+ 社内業務システムにおけるソフトウェア開発、バックエンド、インフラ、要件定義、技術リードを担当しています。 +

+ +
+
diff --git a/Views/Home/IndexJa.cshtml.css b/Views/Home/IndexJa.cshtml.css new file mode 100644 index 0000000..0bc7952 --- /dev/null +++ b/Views/Home/IndexJa.cshtml.css @@ -0,0 +1,40 @@ +.landing { + min-height: calc(100vh - 180px); + display: flex; + align-items: center; + padding: 5rem 0; +} + +.landing__content { + max-width: 760px; +} + +.landing__eyebrow { + margin: 0 0 1rem; + color: #5b6472; + font-size: 0.95rem; + text-transform: uppercase; +} + +.landing h1 { + margin: 0; + color: #111827; + font-size: clamp(2.75rem, 7vw, 5.5rem); + font-weight: 700; + line-height: 1; +} + +.landing__summary { + max-width: 620px; + margin: 1.5rem 0 0; + color: #374151; + font-size: 1.2rem; + line-height: 1.6; +} + +.landing__actions { + display: flex; + flex-wrap: wrap; + gap: 0.75rem; + margin-top: 2rem; +} diff --git a/Views/Shared/_Layout.cshtml b/Views/Shared/_Layout.cshtml index 1280734..06b546e 100644 --- a/Views/Shared/_Layout.cshtml +++ b/Views/Shared/_Layout.cshtml @@ -1,4 +1,7 @@ - +@{ + string currentPath = Context.Request.Path.HasValue ? Context.Request.Path.Value! : "/"; +} + @@ -10,9 +13,9 @@
-