A Phoenix LiveView website for RevenueLink Technologies LLC, featuring a services landing page and a recruiter-focused technical profile.
- Home (
/) — Consulting landing page with hero, service overview, and CTAs - About (
/about) — Company and founder information - Services (
/services) — Detailed service offerings (Elixir, Phoenix, Erlang/OTP, architecture, infrastructure) with engagement models - Contact (
/contact) — Lead capture form with validation - Estimate (
/estimate) — Project estimate request form with project type / budget / timeline enums - Kyle Neal Profile (
/whoami) — High-end recruiter-facing technical profile with expertise, leadership, and interests - Privacy Policy (
/privacy) — Data collection and usage policy
- Ash Admin (
/admin) — Admin dashboard for managing leads and estimate requests (magic link authentication) - Lead and EstimateRequest resources with status tracking and filtering
- Phoenix 1.8 with LiveView
- Ash Framework + AshPostgres for domain modeling and data persistence
- AshAuthentication with magic link sign-in
- AshAdmin for admin dashboard
- Tailwind CSS v4 + daisyUI for styling
- PostgreSQL database
- Lead — Contact form submissions (name, email, company, message, contact method, phone, status)
- EstimateRequest — Project estimate requests (name, email, project type, budget range, timeline, summary, internal size tag)
Both models include honeypot anti-spam, email validation, and role-based authorization (public create, admin read/update/destroy).
- Elixir ~> 1.15
- PostgreSQL 16+
- Install dependencies and set up the database:
mix setup- Start the development server:
mix phx.server- Visit
localhost:4000in your browser.
The site is fully functional immediately — forms submit to the database, and you can access the Ash Admin dashboard at /admin with magic link authentication.
- Run tests:
mix test - Format code:
mix format - Check for issues:
mix precommit(compile with warnings as errors, format check, test) - Generate migrations:
mix ash.codegen <name>
lib/
revstack/
accounts/ # AshAuthentication User resource
consulting/ # Lead and EstimateRequest resources
consulting.ex # Consulting domain
revstack_web/
live/ # LiveView pages (home, about, services, etc.)
components/ # Reusable UI components and layouts
router.ex # Route definitions
config/ # Environment configuration
priv/
repo/
migrations/ # Database migrations
For production deployment, follow Phoenix deployment guides.
Key considerations:
- Set
SECRET_KEY_BASEenvironment variable - Configure
DATABASE_URLfor your PostgreSQL instance - Set up email for magic link authentication (via Swoosh configuration)
- Configure domain/host in
config/runtime.exs
All rights reserved — RevenueLink Technologies LLC