CIMLAS
01ABOUT02SERVICES03PORTFOLIO04PROCESS05BLOG
CIMLAS BESPOKE SOLUTIONS LLCCONTACT

The engineer behind the work

route.ts — cimlas-bespoke
import { NextResponse } from 'next/server'
import { createClient } from '@supabase/supabase-js'
export async function GET(req: Request) {
const supabase = createClient(
process.env.SUPABASE_URL!,
process.env.SUPABASE_KEY!
)
const { data, error } = await supabase
.from('projects')
.select('*')
.order('created_at', { ascending: false })
if (error) return NextResponse.json({ error }, { status: 500 })
return NextResponse.json({ data })
}
export async function POST(req: Request) {
const body = await req.json()
const { title, stack, url } = body
const { data, error } = await supabase
.from('projects')
.insert([{ title, stack, url }])
.select()
if (error) throw new Error(error.message)
return NextResponse.json({ data }, { status: 201 })
}
// tailwind.config.ts
import type { Config } from 'tailwindcss'
const config: Config = {
content: ['./app/**/*.{ts,tsx}'],
theme: { extend: { colors: {
brand: { orange: '#FF4500' }
}}}
}
export default config
// next.config.ts
const nextConfig = {
experimental: { turbo: true },
images: { domains: ['cdn.cimlasbespoke.com'] }
}
export default nextConfig
// schema.sql
CREATE TABLE projects (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
title TEXT NOT NULL,
stack TEXT[],
url TEXT,
created_at TIMESTAMPTZ DEFAULT now()
);
CREATE INDEX ON projects(created_at DESC);
ALTER TABLE projects ENABLE ROW LEVEL SECURITY;
import { NextResponse } from 'next/server'
import { createClient } from '@supabase/supabase-js'
export async function GET(req: Request) {
const supabase = createClient(
process.env.SUPABASE_URL!,
process.env.SUPABASE_KEY!
)
const { data, error } = await supabase
.from('projects')
.select('*')
.order('created_at', { ascending: false })
if (error) return NextResponse.json({ error }, { status: 500 })
return NextResponse.json({ data })
}
export async function POST(req: Request) {
const body = await req.json()
const { title, stack, url } = body
const { data, error } = await supabase
.from('projects')
.insert([{ title, stack, url }])
.select()
if (error) throw new Error(error.message)
return NextResponse.json({ data }, { status: 201 })
}
// tailwind.config.ts
import type { Config } from 'tailwindcss'
const config: Config = {
content: ['./app/**/*.{ts,tsx}'],
theme: { extend: { colors: {
brand: { orange: '#FF4500' }
}}}
}
export default config
// next.config.ts
const nextConfig = {
experimental: { turbo: true },
images: { domains: ['cdn.cimlasbespoke.com'] }
}
export default nextConfig
// schema.sql
CREATE TABLE projects (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
title TEXT NOT NULL,
stack TEXT[],
url TEXT,
created_at TIMESTAMPTZ DEFAULT now()
);
CREATE INDEX ON projects(created_at DESC);
ALTER TABLE projects ENABLE ROW LEVEL SECURITY;

BUILT FORYOU

USMC Aviation Electronics Technician. FinTech Engineer. Web Developer. One engineer. Every line of code. Zero shortcuts.

The Engineer · AI Reel · 2026
The Beginning

United States Marine Corps

Aviation Electronics Technician · FA-18 Hornet

My engineering journey started where precision isn't optional — it's survival. As a USMC Aviation Electronics Technician, my responsibility was keeping FA-18 Hornet aircraft fully operational and mission-ready. Every system I touched had to work correctly, first time, every time. Pilots' lives depended on it. That discipline — root cause analysis, systematic thinking, zero tolerance for half-measures — is the foundation everything else was built on.

The Pivot

Computer Engineering

Leveraging military precision in software

After completing my service contract, I transitioned into computer engineering. The same instinct that made me good at diagnosing avionics failures made me a strong developer — I don't guess, I trace. Engineer at heart, I progressed quickly by applying the same methodical discipline from the hangar to the codebase.

FinTech Era

Payments & Platform Engineering

APIs · Certificates · ISO/PCI · Small Business

My latest chapter brought me into the FinTech payments sector — working with production payment APIs, security certificates, ISO/PCI compliance standards, and platform integrations for small businesses. Seeing complex integrations through from architecture to production rollout. The same logic I applied to FA-18 avionics systems, I now apply to API architecture and web platforms.

Now

CIMLAS Bespoke Solutions LLC

Miami, FL · Founded 2026

CIMLAS is the convergence of everything — military discipline, engineering precision, FinTech systems thinking, and a passion for building things from scratch. Every client gets a direct line to the engineer writing their code. No middlemen. No templates. No guesswork. The same standard I held for FA-18 readiness, I hold for every deployment.

Earth horizon from space

Now you know who's building your product. Ready to start?

Now that you know me — it's time for me to know you and your web design needs.