Skip to content

Commit

Permalink
Merge pull request #72 from rtCamp/chore/rename-to-psat-demos
Browse files Browse the repository at this point in the history
Rename Privacy Sandbox Demos to PSAT Demos
  • Loading branch information
gagan0123 committed Jun 10, 2024
2 parents 5fbc247 + 19be49d commit b6b9d61
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Privacy Sandbox Demos
# PSAT Demos

Privacy Sandbox Demos is a web application that showcases various demos and scenarios related to privacy sandbox.
PSAT Demos is a web application that showcases various demos and scenarios related to privacy sandbox.

## Description

Privacy Sandbox Demos is a web application built using Node.js and Express. It demonstrates different privacy-related
PSAT Demos is a web application built using Node.js and Express. It demonstrates different privacy-related
technologies and scenarios through various demos and use cases.

The project is structured into two main sections:
Expand All @@ -16,7 +16,7 @@ The project is structured into two main sections:

### Prerequisites

Before you can run the Privacy Sandbox Demos, make sure you have the following software installed:
Before you can run the PSAT Demos, make sure you have the following software installed:

- [Node.js](https://nodejs.org/)
- [npm](https://www.npmjs.com/) (Node Package Manager)
Expand Down Expand Up @@ -55,7 +55,7 @@ _You can use `localhost` for the domains if you are running the application loca

## **Usage**

To run the Privacy Sandbox Demos application, use the following command:
To run the PSAT Demos application, use the following command:

```bash
npm start
Expand Down
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ scenarios.forEach(scenario => {
// Catch-all route handler for unmatched routes, rendering the default page
app.use((req, res) => {
res.render(path.join(__dirname, 'src/common/index'), {
title: 'Privacy Sandbox Demos'
title: 'PSAT Demos'
});
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "privacy-sandbox-demos",
"version": "1.0.0",
"description": "Privacy Sandbox Demos",
"description": "PSAT Demos",
"main": "app.js",
"scripts": {
"start": "tailwindcss -i src/styles/input.css -o public/assets/styles/style.css && node app.js",
Expand Down
2 changes: 1 addition & 1 deletion src/common/header.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="container mx-auto flex items-center h-20 gap-4 p-4">
<img src="/assets/imgs/PS_Logo.svg" class="w-14 h-14" alt="Logo">
<a href="/">
<h1 class="text-xl font-bold">Privacy Sandbox Demos</h1>
<h1 class="text-xl font-bold">PSAT Demos</h1>
</a>
</div>
</header>

0 comments on commit b6b9d61

Please sign in to comment.