"use client"; import { useRouter, useSearchParams } from "next/navigation"; import { useState, useEffect } from "react"; import Link from "next/link"; export default function FilterableList() { const router = useRouter(); const searchParams = useSearchParams(); const [filter, setFilter] = useState("All"); useEffect(() => { router.replace(`/portfolio?filter=${filter}`, { scroll: false }); }, [filter]); useEffect(() => { const queryFilter = searchParams.get("filter") || "All"; setFilter(queryFilter); }, [searchParams]); const handleFilterChange = (e) => { const newFilter = e.target.value; setFilter(newFilter); router.replace(`/portfolio?filter=${newFilter}`, { scroll: false }); }; return (
{/* Mobile */}
Project 1

The Spark Coffee

Mobile coffee business offering on-the-go food and beverage services and catering to people across the United States.

View Case Study

Atlas Aviation

Fully certified pilot training and aircraft rental company based in Tampa Florida offering services for both Jet and Turbo Prop.

View Case Study

Social Celebrity

Social Media Enhancement company providing marketing services for Facebook, Instagram, TikTok, Twitter, Youtube and more.

View Case Study

Discord Center

Server Listing Website utilized by millions of users of the popular communicaton platform - "Discord" which specializes in growing Discord servers.

View Case Study

Hytale Server Hosting

Server Hosting company for the upcoming, highly anticipated videogame - Hytale, being developed by Tencent, the parent-company for TikTok & Riot Games.

View Case Study

Multi Group Automotive

Multi-purpose used car dealership located in Norcross, Georgia servicing North Metro Atlanta

View Case Study

Water Main Line Replacement LLC

A water main line replacement company in Atlanta, Georgia that handles the installation and repair of essential water pipelines.

View Case Study

Taqueria del Mar

Latin American eatery in Atlanta, Georgia that specializes in Mexican cuisine with a modern twist.

View Case Study

Jenni BG Plumbing

Plumbing company in Peachtree Corners, Georgia that fixes and installs pipes, fixtures, and other systems that carry water and waste in homes and businesses.

View Case Study

The Gurvey Law Group

A law firm in Brookhaven, Georgia that specializes in investments, purchases, and sales.

View Case Study
); }