Modifications to original theme source code consist of content and slight styling tweaks.
- Landing page content like logos, copy text & features are defined in
src/pages/index.astro
, with the exception of team members which are defined insrc/content/team/*.md
- Blog content resides in the
content/
folder
git clone https://github.com/DuneGroup/dunegroup-consulting.git myProjectName
# or
git clone https://github.com/DuneGroup/dunegroup-consulting.git .
The .
will clone it to the current directory so make sure you are inside your project folder first.
npm install
npm run dev
npm run preview
npm run build
Inside of your Astro project, you'll see the following folders and files:
/
├── public/
│ └── ...
├── src/
│ ├── components/
│ │ └── ...
│ ├── layouts/
│ │ └── ...
│ └── pages/
│ └── ...
└── package.json
Astro looks for .astro
or .md
files in the src/pages/
directory. Each page is exposed as a route based on its file name.
Any static assets, like images, can be placed in the public/
directory.
TailwindCSS is already configured in this repo, so you can start using it without any installation.