Files
soroushasadi/Pages/Index.cshtml.cs
T
soroush.asadi 1b3a8b493e
deploy / deploy (push) Failing after 1m21s
Rewrite: Next.js → ASP.NET Core 10 Razor Pages
Full rewrite of the portfolio site from Next.js 14 to .NET 10:

- ASP.NET Core 10 Razor Pages, no Node.js dependency
- EF Core 10 + SQLite (same schema as before — data survives upgrade)
- Cookie authentication (same single-password model)
- Resend contact form via HttpClient
- Bilingual FA/EN via locale cookie + BasePageModel
- All UI ported to Razor Pages with Tailwind CDN + custom CSS
- Vanilla JS: particles, typewriter, cursor, animations, portfolio modal
- Dockerfile: SDK 10.0-alpine → aspnet 10.0-alpine (no npm/Node needed)
- CI/CD: dropped NPM_TOKEN, ADMIN_SESSION_SECRET — pure dotnet publish

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-01 07:46:56 +03:30

35 lines
1.2 KiB
C#

using Microsoft.AspNetCore.Mvc;
using SoroushAsadi.Services;
namespace SoroushAsadi.Pages;
[Microsoft.AspNetCore.Mvc.IgnoreAntiforgeryToken]
public class IndexModel : BasePageModel
{
public string BlogReadMore { get; private set; } = "Read";
public string BlogReadSuffix { get; private set; } = "min";
public void OnGet()
{
BlogReadMore = IsFa ? "ادامه" : "Read";
BlogReadSuffix = IsFa ? "دقیقه" : "min";
}
public async Task<IActionResult> OnPostContactAsync(
[FromServices] EmailService email,
string name, string company, string service,
string budget, string message)
{
if (string.IsNullOrWhiteSpace(name) || string.IsNullOrWhiteSpace(service) ||
string.IsNullOrWhiteSpace(budget) || string.IsNullOrWhiteSpace(message))
return BadRequest(new { error = "Missing required fields" });
var err = await email.SendContactAsync(
new EmailService.ContactForm(name, company ?? "", service, budget, message, Locale));
return err is null
? new JsonResult(new { ok = true })
: StatusCode(502, new { error = err });
}
}