3b3efafcc8
- Anasayfa, Hizmetler, Projeler, Hakkımızda, İletişim sayfaları - Header/Footer, Hero, ServicesGrid, ProjectsGrid, ContactForm bileşenleri - Appwrite TablesDB entegrasyonu (services, projects, contact_messages) - Server Action ile iletişim formu (submitContact) - Brand palette: navy #0F2C5C + sky #4DA3C7 - kovakyazilim.com'dan alınan logo public/logo.png
17 lines
498 B
TypeScript
17 lines
498 B
TypeScript
import { Client, TablesDB } from "appwrite";
|
|
|
|
const endpoint = process.env.NEXT_PUBLIC_APPWRITE_ENDPOINT!;
|
|
const projectId = process.env.NEXT_PUBLIC_APPWRITE_PROJECT_ID!;
|
|
|
|
export const DATABASE_ID = process.env.NEXT_PUBLIC_APPWRITE_DATABASE_ID!;
|
|
|
|
export const TABLES = {
|
|
contactMessages: "contact_messages",
|
|
services: "services",
|
|
projects: "projects",
|
|
} as const;
|
|
|
|
export const client = new Client().setEndpoint(endpoint).setProject(projectId);
|
|
|
|
export const tablesDB = new TablesDB(client);
|