first commit

This commit is contained in:
2026-06-16 13:04:11 +03:00
commit 7ecdb30afc
54 changed files with 15479 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
import NextAuth from "next-auth"
import CredentialsProvider from "next-auth/providers/credentials"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [
CredentialsProvider({
name: "Credentials",
credentials: {
email: { label: "Email", type: "email" },
password: { label: "Password", type: "password" }
},
async authorize(credentials) {
// Boilerplate mock logic
// TODO: In production, lookup user in Prisma and verify password using bcrypt
// const user = await db.user.findUnique({ where: { email: credentials.email } })
if (credentials?.email === "admin@ayris.tech" && credentials?.password === "admin") {
return {
id: "1",
name: "Admin User",
email: "admin@ayris.tech",
role: "ADMIN"
}
}
return null
}
})
],
callbacks: {
async jwt({ token, user }) {
if (user) {
token.role = (user as any).role
}
return token
},
async session({ session, token }) {
if (session.user && token.role) {
(session.user as any).role = token.role
}
return session
}
},
pages: {
signIn: '/login'
}
})
+20
View File
@@ -0,0 +1,20 @@
import { v2 as cloudinary } from 'cloudinary'
cloudinary.config({
cloud_name: process.env.CLOUDINARY_CLOUD_NAME!,
api_key: process.env.CLOUDINARY_API_KEY!,
api_secret: process.env.CLOUDINARY_API_SECRET!,
})
export async function uploadImage(file: string, folder: string) {
const result = await cloudinary.uploader.upload(file, {
folder, transformation: [{ quality: 'auto', fetch_format: 'auto' }],
})
return { url: result.secure_url, publicId: result.public_id }
}
export async function deleteImage(publicId: string) {
await cloudinary.uploader.destroy(publicId)
}
export { cloudinary }
+9
View File
@@ -0,0 +1,9 @@
import { PrismaClient } from '@prisma/client'
const globalForPrisma = globalThis as unknown as {
prisma: PrismaClient | undefined
}
export const db = globalForPrisma.prisma ?? new PrismaClient()
if (process.env.NODE_ENV !== 'production') globalForPrisma.prisma = db
+359
View File
@@ -0,0 +1,359 @@
export const MOCK_CATEGORIES = [
{
id: 'c1',
name: 'Excursions',
slug: 'excursions',
description: 'Explore historical sites and cultural highlights.',
imageUrl: 'https://images.unsplash.com/photo-1510414842594-a61c69b5ae57?auto=format&fit=crop&q=80',
},
{
id: 'c2',
name: 'Activities',
slug: 'activities',
description: 'Fun and engaging activities for all ages.',
imageUrl: 'https://images.unsplash.com/photo-1533692328991-08159ff19fca?auto=format&fit=crop&q=80',
},
{
id: 'c3',
name: 'Boat Tours',
slug: 'boat-tours',
description: 'Relax and swim in the beautiful blue bays.',
imageUrl: 'https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&q=80',
},
{
id: 'c4',
name: 'Adventure',
slug: 'adventure',
description: 'Adrenaline-pumping experiences.',
imageUrl: 'https://images.unsplash.com/photo-1526315865203-d14fb1e80938?auto=format&fit=crop&q=80',
},
{
id: 'c5',
name: 'Private Tours',
slug: 'private-tours',
description: 'Tailor-made private experiences.',
imageUrl: 'https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&q=80',
}
];
export const MOCK_TOURS = [
{
id: 't1',
title: 'Rhodes',
slug: 'rhodes',
description: 'What about a visit to a nearby Greek Island? Fast catamaran to Rhodes.',
price: 13.00,
imageUrl: 'https://images.unsplash.com/photo-1596422846543-75c6fc197f07?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c1'
},
{
id: 't2',
title: 'Buggy Safari',
slug: 'buggy-safari',
description: 'Buggy Safari through the muddy, dusty and watery trails.',
price: 177.00,
imageUrl: 'https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c4'
},
{
id: 't3',
title: 'White Water Rafting',
slug: 'white-water-rafting',
description: 'From the crazy source of the river to an adrenaline-pumping experience.',
price: 68.00,
imageUrl: 'https://images.unsplash.com/photo-1530866495561-507c9faab2ed?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c4'
},
{
id: 't4',
title: 'Scuba Diving',
slug: 'scuba-diving',
description: 'You dont have to go as far, discover the underwater beauty of Fethiye.',
price: 40.00,
imageUrl: 'https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c4'
},
{
id: 't5',
title: 'Quad Bike Safari',
slug: 'quad-bike-safari',
description: 'We promise you heavens in a dusty, muddy but incredibly fun ride.',
price: 47.00,
imageUrl: 'https://images.unsplash.com/photo-1516627145497-ae6968895b74?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c4'
},
{
id: 't6',
title: 'Paragliding',
slug: 'paragliding',
description: 'Challenge your limits! Book up for paragliding from the top of Babadag mountain.',
price: 136.00,
imageUrl: 'https://images.unsplash.com/photo-1471922694854-ff1b63b20054?auto=format&fit=crop&q=80',
duration: '2 Hours',
categoryId: 'c4'
},
{
id: 't7',
title: 'City Tour',
slug: 'city-tour',
description: 'Fethiye City Tour & Ghost Town exploration.',
price: 80.00,
imageUrl: 'https://images.unsplash.com/photo-1555881400-74d7acaacd8b?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c5'
},
{
id: 't8',
title: 'Fethiye Village Discovery',
slug: 'fethiye-village-discovery',
description: 'Discover the real Turkey in our traditional village tour.',
price: 53.00,
imageUrl: 'https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c5'
},
{
id: 't9',
title: 'Private Boat Hire',
slug: 'private-boat-hire',
description: 'The best way to escape the hustle, on a private yacht.',
price: 16.00,
imageUrl: 'https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c3'
},
{
id: 't10',
title: 'Speed Boat Hire',
slug: 'speed-boat-hire',
description: 'A day for yourself, adrenaline and speed on the sea.',
price: 115.00,
imageUrl: 'https://images.unsplash.com/photo-1500315331616-db4f707c24d1?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c3'
},
{
id: 't11',
title: 'Sunset Trip',
slug: 'sunset-trip',
description: 'Listen to the symphony of the sea as the sun sets.',
price: 26.00,
imageUrl: 'https://images.unsplash.com/photo-1495562569060-2eec283d3391?auto=format&fit=crop&q=80',
duration: 'Evening',
categoryId: 'c3'
},
{
id: 't12',
title: 'Blue Bays Boat Trip',
slug: 'blue-bays-boat-trip',
description: 'A peaceful boat trip to Fethiye\'s most beautiful bays.',
price: 45.00,
imageUrl: 'https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c3'
},
{
id: 't13',
title: 'Ölüdeniz Boat Trip',
slug: 'oludeniz-boat-trip',
description: 'Endless Blue! Discover the beauty of Ölüdeniz bays.',
price: 45.00,
imageUrl: 'https://images.unsplash.com/photo-1498092651296-641e88c3b057?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c3'
},
{
id: 't14',
title: '12 Islands with Sailing Boat',
slug: '12-islands-sailing',
description: 'Sunbathe and fall asleep in the turquoise waters of the 12 islands.',
price: 53.00,
imageUrl: 'https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c3'
},
{
id: 't15',
title: 'Canoeing',
slug: 'canoeing',
description: 'Come and enjoy your Canoeing adventure.',
price: 39.00,
imageUrl: 'https://images.unsplash.com/photo-1544256718-3b618235f5c6?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c2'
},
{
id: 't16',
title: 'Fishing',
slug: 'fishing',
description: 'Good Luck to All! Fishing tour in the rich waters.',
price: 147.00,
imageUrl: 'https://images.unsplash.com/photo-1506158669146-619067262a00?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c2'
},
{
id: 't17',
title: 'Camel Trekking',
slug: 'camel-trekking',
description: 'Explore Kayaköy on a camel.',
price: 45.00,
imageUrl: 'https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c2'
},
{
id: 't18',
title: 'Turkish Bath (Hamam)',
slug: 'turkish-bath',
description: 'Can you think of a better way to relax? Traditional Turkish Bath.',
price: 13.00,
imageUrl: 'https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&q=80',
duration: '2 Hours',
categoryId: 'c2'
},
{
id: 't19',
title: 'Horse Riding',
slug: 'horse-riding',
description: 'Non-experienced and experienced riders welcome.',
price: 38.00,
imageUrl: 'https://images.unsplash.com/photo-1553460662-8646b9a8964e?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c2'
},
{
id: 't20',
title: 'Jeep Safari',
slug: 'jeep-safari',
description: 'Get ready for a full day free of stress! Enjoy the nature.',
price: 20.00,
imageUrl: 'https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c2'
},
{
id: 't21',
title: 'Kaş-Kalkan-Kaputaş Beach',
slug: 'kas-kalkan-kaputas',
description: 'As a tourist resort, it is totally a unique experience.',
price: 87.00,
imageUrl: 'https://images.unsplash.com/photo-1600861194942-f883de0dfe96?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c1'
},
{
id: 't22',
title: 'Fethiye Market and Ghost Town',
slug: 'fethiye-market-ghost-town',
description: 'TUESDAYS in Fethiye are great! Kayaköy and local market.',
price: 24.00,
imageUrl: 'https://images.unsplash.com/photo-1555881400-74d7acaacd8b?auto=format&fit=crop&q=80',
duration: 'Half Day',
categoryId: 'c1'
},
{
id: 't23',
title: 'Ephesus - Pamukkale (2 Days 1 Night)',
slug: 'ephesus-pamukkale',
description: 'Youll come back as an expert in Turkey.',
price: 167.00,
imageUrl: 'https://images.unsplash.com/photo-1588523775466-231a48c41804?auto=format&fit=crop&q=80',
duration: '2 Days',
categoryId: 'c1'
},
{
id: 't24',
title: 'Pamukkale - Hierapolis (Cotton Castle)',
slug: 'pamukkale',
description: 'The memories of this tour will stay with you forever.',
price: 60.00,
imageUrl: 'https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c1'
},
{
id: 't25',
title: 'Saklıkent - Tlos - Yakapark',
slug: 'saklikent-tlos-yakapark',
description: 'A special treat exploring the natural beauties.',
price: 40.00,
imageUrl: 'https://images.unsplash.com/photo-1533692328991-08159ff19fca?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c1'
},
{
id: 't26',
title: 'Dalyan - Mud Bath - Turtle Beach',
slug: 'dalyan-mud-bath',
description: 'A day in Dalyan with Pioneer Travel.',
price: 53.00,
imageUrl: 'https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&q=80',
duration: 'Full Day',
categoryId: 'c1'
}
];
export const MOCK_REVIEWS = [
{
id: 'r1',
authorName: 'Alan A',
rating: 5,
comment: 'booked up for the paragliding from the top of the mountain ,2000 mtrs high ,the guide instructor was very experianced indeed and took care 100 %...',
tourId: 't6',
createdAt: new Date('2026-05-30T04:05:49-0400')
},
{
id: 'r2',
authorName: 'charlene88',
rating: 5,
comment: 'My husband and I wanted to do a couple of trips on our holiday to Olu Deniz. We booked the 6 islands boat trip and the horse riding with Tweety. This guy is lovely...',
tourId: 't14',
createdAt: new Date('2026-05-28T09:52:00-0400')
},
{
id: 'r3',
authorName: 'Esther T',
rating: 5,
comment: 'Amazing personal service booking tour experiences with Tweetie. His tours were much cheaper than others and he came highly recommended from other guests.',
tourId: 't20',
createdAt: new Date('2026-05-02T02:40:13-0400')
},
{
id: 'r4',
authorName: 'A7607UQkarla',
rating: 5,
comment: 'We booked FlySpot Paragliding & Spa Experience through Tweety @ Pioneer Travel. He\'s a great and gets you good deals, I thoroughly recommend him.',
tourId: 't6',
createdAt: new Date('2025-11-02T04:21:06-0500')
}
];
export const MOCK_BLOGS = [
{
id: 'b1',
title: 'CADIANDA',
excerpt: 'The ancient city of Cadianda whose Lycian name is Cadavanti, is located near Üzümlü Village about 12 miles to Fethiye',
imageUrl: 'https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&q=80',
date: '2026-05-15'
},
{
id: 'b2',
title: 'Things to Do in Fethiye',
excerpt: 'Things To Do in Fethiye Area',
imageUrl: 'https://images.unsplash.com/photo-1533692328991-08159ff19fca?auto=format&fit=crop&q=80',
date: '2026-05-20'
},
{
id: 'b3',
title: 'Fethiye',
excerpt: 'Fethiye is located on the Lycian and Carian border and was called Telmessos in ancient times.',
imageUrl: 'https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&q=80',
date: '2026-05-25'
}
];
+6
View File
@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}