Skip to content

Commit

Permalink
@Killercavin made an initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Killercavin committed Apr 26, 2024
0 parents commit 5f107f9
Show file tree
Hide file tree
Showing 6 changed files with 85 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .idx/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

gc/
51 changes: 51 additions & 0 deletions .idx/dev.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# To learn more about how to use Nix to configure your environment
# see: https://developers.google.com/idx/guides/customize-idx-env
{ pkgs, ... }: {
# Which nixpkgs channel to use.
channel = "stable-23.11"; # or "unstable"
# Use https://search.nixos.org/packages to find packages
packages = [
# pkgs.go
# pkgs.python311
# pkgs.python311Packages.pip
# pkgs.nodejs_20
# pkgs.nodePackages.nodemon
];
# Sets environment variables in the workspace
env = {};
idx = {
# Search for the extensions you want on https://open-vsx.org/ and use "publisher.id"
extensions = [
# "vscodevim.vim"
];
# Enable previews
previews = {
enable = true;
previews = [
# {
# # Example: run "npm run dev" with PORT set to IDX's defined port for previews,
# # and show it in IDX's web preview panel
# command = ["npm" "run" "dev"];
# manager = "web";
# id = "web";
# env = {
# # Environment variables to set for your server
# PORT = "$PORT";
# };
# }
];
};
# Workspace lifecycle hooks
workspace = {
# Runs when a workspace is first created
onCreate = {
# Example: install JS dependencies from NPM
# npm-install = 'npm install';
};
onStart = {
# Example: start a background task to watch and re-build backend code
# watch-backend = "npm run watch-backend";
};
};
};
}
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Safaricon KE [Safaricom.co.ke](https://safaricom.co.ke)

## About

This repo is a focus pactice project aimed at developing a clone of the [Safaricom](https://safaricom.com) website

This is a side project in which I gear myself towards testing and advancing my skills with a practical aspect

## Tech Stack

For this project have used the following stack:

* HTML
+ CSS
- JavaScript



Get started by customizing your environment (defined in the .idx/dev.nix file) with the tools and IDE extensions you'll need for your project!

Learn more at https://developers.google.com/idx/guides/customize-idx-env
11 changes: 11 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Safaricom World | Bundles and Calling Airtime Plans</title>
</head>
<body>

</body>
</html>
Empty file added src/css/style.css
Empty file.
Empty file added src/js/main.js
Empty file.

0 comments on commit 5f107f9

Please sign in to comment.