Skip to content

Commit e2da2e4

Browse files
Refactor application pages for improved UI/UX and functionality - updated header inclusion, enhanced filtering options, added success/error messages, and improved styling across multiple files. Updated database schema to support new gig features.
1 parent 6efd17e commit e2da2e4

File tree

10 files changed

+4297
-959
lines changed

10 files changed

+4297
-959
lines changed

html/applications.php

Lines changed: 351 additions & 64 deletions
Large diffs are not rendered by default.

html/css/site.css

Lines changed: 459 additions & 78 deletions
Large diffs are not rendered by default.

html/dashboard.php

Lines changed: 604 additions & 26 deletions
Large diffs are not rendered by default.

html/find_influencers.php

Lines changed: 350 additions & 44 deletions
Large diffs are not rendered by default.

html/includes/header.php

Lines changed: 491 additions & 25 deletions
Large diffs are not rendered by default.

html/index.php

Lines changed: 874 additions & 50 deletions
Large diffs are not rendered by default.

html/post_gig.php

Lines changed: 428 additions & 24 deletions
Large diffs are not rendered by default.

html/profile.php

Lines changed: 646 additions & 647 deletions
Large diffs are not rendered by default.

html/schema_update.sql

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
-- Schema update for adding admin role to users table
22
ALTER TABLE users
3-
MODIFY COLUMN role ENUM('restaurant','influencer','admin') NOT NULL;
3+
MODIFY COLUMN role ENUM('restaurant','influencer','admin') NOT NULL;
4+
5+
-- Add new columns to gigs table for enhanced functionality
6+
ALTER TABLE gigs
7+
ADD COLUMN category VARCHAR(50) DEFAULT NULL,
8+
ADD COLUMN requirements TEXT DEFAULT NULL,
9+
ADD COLUMN deadline DATE DEFAULT NULL;

marketing.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# OuraWork TikTok Marketing Campaign Document
2+
3+
## Campaign Objective
4+
5+
Increase brand awareness and user sign-ups on OuraWork.com by engaging both restaurants and food influencers through relatable, informative, and visually appealing TikTok ads.
6+
7+
## Target Audience
8+
9+
- **Restaurants:** Small to medium-sized restaurant owners looking to boost their visibility and customer base.
10+
- **Food Influencers:** Emerging and established food influencers seeking collaboration opportunities with restaurants.
11+
12+
## Ad Concepts, Scripts, and Scenes
13+
14+
### 1. **"From Empty Tables to Viral Success"**
15+
16+
- **Objective:** Show restaurant owners the transformational potential of partnering with influencers.
17+
- **Script:**
18+
- **Scene 1:** Camera pans over an empty restaurant.
19+
- **Voiceover:** "Remember the days when this was a common sight?"
20+
- **Scene 2:** Transition to the same restaurant bustling with customers.
21+
- **Voiceover:** "With OuraWork, turn quiet nights into viral success!"
22+
- **Scene 3:** Shots of influencers dining and posting on social media.
23+
- **Voiceover:** "Connect with top food influencers who can bring your dishes to thousands."
24+
- **Scene 4:** OuraWork app interface showing easy influencer booking.
25+
- **Voiceover:** "It’s simple. Post a gig, choose your influencer, and watch the magic happen."
26+
- **CTA:** "Join OuraWork today and fill those tables!"
27+
- **Visuals:** Before/after shots, influencer interactions, app interface.
28+
29+
### 2. **"Day in the Life: Paid Food Influencer"**
30+
31+
- **Objective:** Attract influencers by showcasing a day of paid gigs.
32+
- **Script:**
33+
- **Scene 1:** Influencer preparing for the day.
34+
- **Voiceover:** "Start your day with a gig that actually pays."
35+
- **Scene 2:** Influencer arriving at a restaurant, greeted by staff.
36+
- **Text Overlay:** "Gig #1: Breakfast Bonanza"
37+
- **Scene 3:** Influencer taking photos, videos, interacting with staff and food.
38+
- **Voiceover:** "Capture, post, and get paid. It’s that easy with OuraWork."
39+
- **Scene 4:** Influencer checking payments on OuraWork app.
40+
- **Voiceover:** "Ready for your next meal? OuraWork keeps them coming."
41+
- **CTA:** "Turn your food passion into paychecks. Sign up now!"
42+
- **Visuals:** Influencer activities, app interactions, engaging food content.
43+
44+
### 3. **"Restaurant Owner Reacts"**
45+
46+
- **Objective:** Create a relatable and humorous ad showing a restaurant owner’s reaction to influencer impact.
47+
- **Script:**
48+
- **Scene 1:** Restaurant owner looking anxious, checking their phone.
49+
- **Voiceover:** "Waiting for the magic to happen?"
50+
- **Scene 2:** Owner’s shocked and joyful reaction to seeing their restaurant tagged in a viral post.
51+
- **Voiceover:** "See your place packed after an influencer shout-out!"
52+
- **Scene 3:** Quick montage of the restaurant getting busy, customers enjoying.
53+
- **Voiceover:** "That’s the OuraWork effect!"
54+
- **Scene 4:** Owner giving a thumbs up to the camera.
55+
- **CTA:** "Get in on the action. Join OuraWork today!"
56+
- **Visuals:** Owner reactions, busy restaurant scenes, influencer posts.
57+
58+
### 4. **"Food Photography Hacks That Restaurants Love"**
59+
60+
- **Objective:** Provide value to influencers while showcasing their skills to restaurants.
61+
- **Script:**
62+
- **Scene 1:** Influencer setting up a shot at a restaurant.
63+
- **Voiceover:** "Want to make your food photos pop? Here’s how."
64+
- **Scene 2:** Tips overlay as influencer adjusts lighting, angles, and presentation.
65+
- **Text Overlay:** "Tip 1: Natural light. Tip 2: Simple backgrounds."
66+
- **Scene 3:** Comparison of average vs. improved photos.
67+
- **Voiceover:** "Restaurants love this! And they find photographers like you on OuraWork."
68+
- **Scene 4:** Influencer receiving a notification of a new gig on OuraWork.
69+
- **CTA:** "Show off your skills on OuraWork. Sign up now!"
70+
- **Visuals:** Influencer at work, photo tips, app notification.
71+
72+
## Production Notes
73+
74+
- **Duration:** Each ad should be between 15-30 seconds.
75+
- **Style:** Keep the visuals dynamic and engaging with quick cuts to maintain viewer interest.
76+
- **Music:** Use trending tracks that enhance the message without overpowering the voiceover.
77+
- **Call to Action:** Ensure the CTA is clear and visible, encouraging immediate action.
78+
79+
## Monitoring and Optimization
80+
81+
- **Tracking:** Use TikTok’s built-in analytics to track views, engagement, and click-through rates.
82+
- **A/B Testing:** Test different versions of ads to determine which elements perform best.
83+
- **Feedback:** Monitor comments for direct feedback from the audience to refine future ads.
84+
85+
---
86+
87+
This document serves as a comprehensive guide to kickstart the TikTok advertising campaign for OuraWork, ensuring each ad is purposeful and aligned with the campaign objectives.

0 commit comments

Comments
 (0)