Skip to content

Commit

Permalink
Update ads (without deleting old ones because they may come back)
Browse files Browse the repository at this point in the history
  • Loading branch information
leomet07 committed Sep 11, 2024
1 parent d300b64 commit 4b27b0d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 24 deletions.
14 changes: 7 additions & 7 deletions advertisements/BannerAdvertisements.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const BannerAdvertisements = [
{
name: "Prompt College Application and Essay Coaching",
image_src: "/images/ads/prompt_banner.png",
url: "https://www.myprompt.com/",
},
];
const BannerAdvertisements: {
name: string;
image_src: string;
url: string;
}[] = [

];
export default BannerAdvertisements;
28 changes: 11 additions & 17 deletions advertisements/MixedAdvertisements.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
const MixedAdvertisements = [
{
name: "Kweller Prep",
image_src: "/images/ads/kweller_prep.png",
url: "https://www.kwellerprep.com/",
},
{
name: "College Essay Advisors",
image_src: "/images/ads/college_essay_advisors.png",
url: "http://www.collegeessayadvisors.com/",
},
{
name: "College Essay Tutors",
image_src: "/images/ads/college_essay_tutors.png",
url: "http://www.collegeessaytutors.com/",
},
];
const MixedAdvertisements: {
name: string;
image_src: string;
url: string;
}[] = [
{
name: "Prompt College Application and Essay Coaching",
image_src: "/images/ads/prompt_mixed.jpg",
url: "https://www.myprompt.com/",
},
];
export default MixedAdvertisements;
Binary file added public/images/ads/prompt_mixed.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4b27b0d

Please sign in to comment.